diff --git a/app/templates/views/service-settings/email-reply-to/_verify-updates.html b/app/templates/views/service-settings/email-reply-to/_verify-updates.html
index fde484268..ce19444d7 100644
--- a/app/templates/views/service-settings/email-reply-to/_verify-updates.html
+++ b/app/templates/views/service-settings/email-reply-to/_verify-updates.html
@@ -23,23 +23,19 @@
Continue
{% elif verification_status == "failure" %}
- {% call banner_wrapper(type='dangerous') %}
-
- There’s a problem with your reply-to address
-
-
- We sent an email to ‘{{ reply_to_email_address }}’ but it wasn’t delivered.
-
-
- You can try again, or use a different address.
-
- {% endcall %}
-
- Let recipients send replies to a shared inbox that’s managed by your team.
-
-
- Do not use your own email address for replies.
-
+
+ {% call banner_wrapper(type='dangerous') %}
+
+ There’s a problem with your reply-to address
+
+
+ We sent an email to ‘{{ reply_to_email_address }}’ but it wasn’t delivered.
+
+
+ You can try again, or use a different address.
+
+ {% endcall %}
+
{% if replace and replace != "False" %}
{% set form_url = url_for('.service_edit_email_reply_to', service_id=service_id, reply_to_email_id=replace) %}
{% else %}
@@ -50,14 +46,11 @@
) %}
{{ textbox(
form.email_address,
- width='2-3',
- safe_error_message=True
+ width='1-1',
+ safe_error_message=True,
+ hint='This should be a shared inbox managed by your team, not your own email address'
) }}
- {% if form.is_default.data %}
-
- This is the default reply-to address for {{ current_service.name }} emails
-
- {% else %}
+ {% if not first_email_address and not replace %}
{{ checkbox(form.is_default) }}
diff --git a/app/templates/views/service-settings/email-reply-to/edit.html b/app/templates/views/service-settings/email-reply-to/edit.html
index 24c1d0b06..fc92a275d 100644
--- a/app/templates/views/service-settings/email-reply-to/edit.html
+++ b/app/templates/views/service-settings/email-reply-to/edit.html
@@ -19,8 +19,9 @@
{% call form_wrapper() %}
{{ textbox(
form.email_address,
- width='2-3',
- safe_error_message=True
+ width='1-1',
+ safe_error_message=True,
+ hint='This should be a shared inbox managed by your team, not your own email address.'
) }}
{% if form.is_default.data %}