-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Currently in Forms the email message content must be defined in the mail template. This means site administrators cannot easily customize the message that is sent when a form is submitted without modifying code.
It would be helpful if a form could define its own email message content directly in the form configuration. This would give editors more flexibility to adjust the message per form.
Ideally this message field should support Antlers, so form fields can be used inside the message, similar to how fields can already be used for the recipient (e.g. {{ email }}).
A simple textarea with basic formatting options (e.g. bold, italic, links, etc.) would already cover most use cases.
Example:
Thank you for your submission.
Name: {{ name }}
Email: {{ email }}
Message: {{ message }}
This would make form-specific messaging easier to manage without editing mail templates.
