emails: add header names in description (#53118)

This commit is contained in:
Thomas NOËL 2021-04-14 10:53:55 +02:00 committed by Thomas NOËL
parent ac6ea6351b
commit fc265eda01
1 changed files with 2 additions and 2 deletions

View File

@ -37,9 +37,9 @@ class EmailsForm(forms.Form):
email_signature = forms.CharField(label=_('Signature'), required=False,
widget=forms.Textarea)
email_unsubscribe_info_url = forms.CharField(
label=_('URL with informations about emails sent by the platform'), required=False,
label=_('URL with informations about emails sent by the platform (List-Unsubscribe header)'), required=False,
help_text=_('It should contain details such as what emails are sent and how not to receive them.'))
email_abuse_report_url = forms.CharField(label=_('URL for email abuse reports'), required=False,
email_abuse_report_url = forms.CharField(label=_('URL for email abuse reports (X-Report-Abuse header)'), required=False,
help_text=_('It should contain a form to submit email abuse reports'))
def __init__(self, *args, **kwargs):