diff --git a/src/postorius/forms.py b/src/postorius/forms.py index b25458e..47377e5 100644 --- a/src/postorius/forms.py +++ b/src/postorius/forms.py @@ -545,6 +545,12 @@ 'If a welcome message is to be sent to subscribers, you can ' 'specify a URI that gives the text of this message.'), ) + goodbye_message_uri = forms.CharField( + label=_('URI for the good bye message'), + help_text=_( + 'If a good bye message is to be sent to unsubscribers, you can ' + 'specify a URI that gives the text of this message.'), + ) admin_immed_notify = forms.BooleanField( widget=forms.RadioSelect(choices=((True, _('Yes')), (False, _('No')))), required=False,