diff --git a/hypha/apply/activity/messaging.py b/hypha/apply/activity/messaging.py
index 717a33fbe7918e86aa6be78c2b2faa12a18760e0..2710b0c9172fd78d259bea77f6f37c8206bb6102 100644
--- a/hypha/apply/activity/messaging.py
+++ b/hypha/apply/activity/messaging.py
@@ -673,7 +673,7 @@ class EmailAdapter(AdapterBase):
         MESSAGES.SKIPPED_REPORT: 'messages/email/report_skipped.html',
         MESSAGES.REPORT_FREQUENCY_CHANGED: 'messages/email/report_frequency.html',
         MESSAGES.REPORT_NOTIFY: 'messages/email/report_notify.html',
-        MESSAGES.REVIEW_REMINDER: 'messages/email/review_reminder.html',
+        MESSAGES.REVIEW_REMINDER: 'messages/email/ready_to_review.html',
     }
 
     def get_subject(self, message_type, source):
diff --git a/hypha/apply/activity/templates/messages/email/ready_to_review.html b/hypha/apply/activity/templates/messages/email/ready_to_review.html
index 98dabcef3f002a23eb79ce874ca2ccb236778fc4..d2713c6c51589162f2e345e586ed4638ba05b9ed 100644
--- a/hypha/apply/activity/templates/messages/email/ready_to_review.html
+++ b/hypha/apply/activity/templates/messages/email/ready_to_review.html
@@ -2,7 +2,7 @@
 {% block salutation %}Dear Reviewer,{% endblock %}
 
 {% block content %}
-A new proposal has been added to your review list.
+This application is awaiting your review.
 
 Title: {{ source.title }}
 Link: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}
diff --git a/hypha/apply/activity/templates/messages/email/review_reminder.html b/hypha/apply/activity/templates/messages/email/review_reminder.html
deleted file mode 100644
index 1d3baf9c72890ade72db15628576ff5dc578d50a..0000000000000000000000000000000000000000
--- a/hypha/apply/activity/templates/messages/email/review_reminder.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "messages/email/base.html" %}
-{% block salutation %}Dear Reviewer,{% endblock %}
-
-{% block content %}
-A new proposal is awaiting your review.
-
-Title: {{ source.title }}
-Link: {{ request.scheme }}://{{ request.get_host }}{{ source.get_absolute_url }}
-{% endblock %}