Comment on page
Email Subject line
Customize your notification email subject
There are two ways you can setup Email Subject.
You can add a pre-defined subject by adding a form
input
with type="hidden"
along with your subject in value
. See the code below.<input type="hidden" name="subject" value="New Submission from Web3Forms">
In this case, the subject can be filled by the website visitor. For that, you can use an input
type="text"
. See Code below.<input type="text" name="subject" />
The Name attribute must be called
subject
Last modified 2yr ago