Receive an email every time your web form is submitted, serverless.
No back end needed for your contact form or landing page,
no script, no captcha, no SMTP server.
1.Set up a form on your website:
You can include any input type you want, except file.
For example, a contact form with the fields email
, name
and message
:
<form
action="https://www.form-to-email.com/api/s/YOUR_FORM_ID"
method="POST"
>
<label>Email address:
<input type="email" name="email" required />
</label>
<label>Name:
<input type="text" name="name" required />
</label>
<label>Message:
<textarea name="message" required></textarea>
</label>
<button>Submit</button>
</form>
2.Define a form-to-email template:
You can use any field included in the form:
To:
you-or-someone-else@domain.com
Reply To:
{{email}}
Subject: 👋
{{name}}
wants to get in touchBody:
{{name}}
has a message for you:{{message}}
3.Let us do the rest.
Every time a person submits the form, form-to-email will send the email to you (or your client).
Meanwhile, spambots will be blocked before reaching your inbox.
You will also have a tabular view of all data submitted through the form.
This data will remain confidential and not shared to any third party.
Get startedno credit card asked