{% extends "withnav_template.html" %} {% from "components/textbox.html" import textbox %} {% from "components/page-footer.html" import page_footer %} {% from "components/table.html" import row_group, row, text_field, edit_field, field, boolean_field, list_table %} {% block service_page_title %} Email reply to addresses {% endblock %} {% block maincolumn_content %}

Email reply to addresses

Add email address
{% call(item, row_number) list_table( reply_to_email_addresses, empty_message="You haven’t added any email reply to addresses yet", caption="Reply to email addresses", caption_visible=false, field_headings=[ 'Email addresses', 'Action' ], field_headings_visible=False ) %} {% call field() %} {{ item.email_address }} {% if item.is_default %} {{ "(default)" }} {% endif %} {% endcall %} {{ edit_field('Change', url_for('.service_edit_email_reply_to', service_id =current_service.id, reply_to_email_id = item.id)) }} {% endcall %}

Your emails will be sent from {{ current_service.email_from }}@notifications.service.gov.uk

This is so they have the best chance of being delivered. This email address can’t receive replies.

Set up separate email addresses to receive replies from your users. {% if current_service.restricted and not reply_to_email_addresses %} Your service can’t go live until you’ve added at least one reply to address. {% endif %}

{% endblock %}