Available on: All plans
To customize the submission email subject line, add an input with the name subject
This will let you reply to submissions without having to edit the subject line each time. Here's an example:
<input name="subject" value="Need help with order" />
Unique subjects
If you'd like to customize your subject based on your submission's contents you can do so using a hidden input field and use variables from your submission. To add a variable, use the following syntax: {{ variable_name }}
in your subject value.
For instance, if you had a field named name
and you'd like to have all subjects come in as "New submission from name", you can do this like so:
<input name="subject" type="hidden" value="New submission from {{ name }}" />