HTML.form.guide

email form mailto

Sending form submissions to email using 'mailto:'

The simplest method to get the form submissions posted to you via email is by using “mailto:” in the action field of the form. However, this method has many drawbacks. First, let us see how we can use ‘mailto’ in a form. How to set up ‘mailto’ in your HTML form In the action field of the form, set the action as “mailto:youremailaddress” for example: <form action="mailto:myforms@mydomain.com"> The sad part is that the behavior of such a form will be different in different browsers.

Continue Reading →