Features
Merge tags
Use merge tags to personalize notifictions, referencing values submitted via the form
When you create a form using Formbackend, you have the option to send the person that submits your form an email. For that to work, you need to have an email field in your form. Let’s take the following form markup as an example (ABCDEF should be your unique identifier for your form):
<form action="https://www.formbackend.com/f/{your-unique-token}" method="post">
<label>Name</label>
<input type="text" name="name">
<label>Email</label>
<input type="email" name="email">
<input type="submit">Submit form</input>
</form>
Configuring notifications
Go to the “notifications” tab for your form, and scroll down to the “Notify the person who submits the form” section. Make sure to click on the radio-button “Send them an email when they submit the form”. You should now see “From email”, “From name”, “Subject” and “Body”.
The “From email” is the email from where the emails should be sent, this can be your companys email or your own personal email depending on your use case.
“From name” is the name the email should show up from when they receive it.
“Subject” is the emails subject.
“Body” is the content of the email. You could write a simple “Thank you! We’ll get back to you shortly” message, or you can use merge tags to personalize it further.
Merge tags are written on the form {{value.name}}
which will be replaced by the value the submitter put in the name field - or in the case of the above example you could also do {{value.email}}
.