allow non-gov reply to email addresses

we reckon users will like to see gov reply-to email addresses because
it will improve their confidence in the email.

however, some services, for a few complex reasons, don't want a gov
reply to address. rather than add their specific domains to the
whitelist for signups etc, just make reply tos allowed from any domain.

We vet reply-tos before services go live anyway.
This commit is contained in:
Leo Hemsted
2018-04-30 14:00:05 +01:00
parent 6e522cb87f
commit 60202cf5af
2 changed files with 3 additions and 4 deletions

View File

@@ -579,7 +579,7 @@ class ProviderForm(StripWhitespaceForm):
class ServiceReplyToEmailForm(StripWhitespaceForm):
email_address = email_address(label='Email reply to address')
email_address = email_address(label='Email reply to address', gov_user=False)
is_default = BooleanField("Make this email address the default")