diff --git a/reviewboard/templates/notifications/review_request_email.html b/reviewboard/templates/notifications/review_request_email.html
index f1f4a97a29e6e9d78cfcbdef9a4d83a549f52e5f..9493ea567aa6377f231cbbc4ee0c46063746bc55 100644
--- a/reviewboard/templates/notifications/review_request_email.html
+++ b/reviewboard/templates/notifications/review_request_email.html
@@ -26,10 +26,21 @@
 </table>
 {% endif %}
 
-<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description {% if changes %}{% if changes.summary or changes.description %} (updated){% endif %}{% endif %}</h1>
+{% if changes %}{% if changes.summary %}
+<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Summary (updated)</h1>
 <table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
  <tr>
   <td>
+   <pre style="margin: 0; padding: 0; {{precss}}">{{review_request.summary}}</pre>
+  </td>
+ </tr>
+</table>
+{% endif %}{% endif %}
+
+<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description {% if changes %}{% if changes.description %} (upd
+ <table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
+ <tr>
+  <td>
    <pre style="margin: 0; padding: 0; {{precss}}">{{review_request.description}}</pre>
   </td>
  </tr>
diff --git a/reviewboard/templates/notifications/review_request_email.txt b/reviewboard/templates/notifications/review_request_email.txt
index cacfbb28a1deabaf7572380b8ba85ca38b92f887..25f7bb28c0d93347175b28cdf6bb6b291d49681b 100644
--- a/reviewboard/templates/notifications/review_request_email.txt
+++ b/reviewboard/templates/notifications/review_request_email.txt
@@ -18,10 +18,16 @@ Changes
 {{change_text}}
 {% endif %}
 
-Summary{% if changes %}{% if changes.summary or changes.description %} (updated){% endif %}{% endif %}
+{% if changes %}{% if changes.summary %}Summary (updated)
+-----------------
+
+{{review_request.summary}}
+{% endif %}{% endif %}
+
+Description{% if changes %}{% if changes.description %} (updated){% endif %}{% endif %}
 -------
 
-{{ review_request.description }}
+{{review_request.description}}
 
 {% ifnotequal review_request.bugs_closed "" %}
 This addresses bug{{ review_request.get_bug_list|length|pluralize }} {{ review_request.get_bug_list|humanize_list }}.{% ifnotequal review_request.repository.bug_tracker "" %}{% for bug in review_request.get_bug_list %}
