{% extends "withnav_template.html" %} {% from "components/api-key.html" import api_key %} {% 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 with context %} {% block service_page_title %} Email reply-to addresses {% endblock %} {% block maincolumn_content %}

Email reply-to addresses

{% if current_user.has_permissions('manage_service') %}
Add email address
{% endif %}
{% if not current_service.email_reply_to_addresses %}
You haven’t added any email reply-to addresses yet
{% endif %} {% for item in current_service.email_reply_to_addresses %}

{{ item.email_address }} {%- if item.is_default -%} (default) {% endif %}

{% if current_user.has_permissions('manage_service') %} Change {% endif %} {% if current_service.count_email_reply_to_addresses > 1 %} {{ api_key(item.id, thing="ID") }} {% endif %}
{% endfor %}

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.trial_mode and not current_service.has_email_reply_to_address %} Your service can’t go live until you’ve added at least one reply-to address. {% endif %}

{% endblock %}