Add the auto-reply feature in the admin panel
This commit is contained in:
@@ -42,6 +42,12 @@ class UserForwardForm(Form):
|
||||
submit = fields.SubmitField('Update')
|
||||
|
||||
|
||||
class UserReplyForm(Form):
|
||||
reply_subject = fields.StringField('Reply subject')
|
||||
reply_body = fields.StringField('Reply body', widget=widgets.TextArea())
|
||||
submit = fields.SubmitField('Update')
|
||||
|
||||
|
||||
class AliasCreateForm(Form):
|
||||
localpart = fields.StringField('Alias', [validators.DataRequired()])
|
||||
destination = fields.StringField('Destination', widget=widgets.TextArea())
|
||||
|
||||
Reference in New Issue
Block a user