Log in

View Full Version : send form to email



mangfpt
10-24-2018, 12:54 AM
I am trying to make a form where visitors can fill out and the information would be emailed to me but I can not get it to work?? can you please assist me .
thank you

keyboard
10-26-2018, 10:21 PM
Moderator's Note
Please try to use a title on your thread that gives information about your problem, instead of just "help me" or "need assistance".


You can send forms as an email in pure html like this -

<form action="mailto:someone@example.com" method="post" enctype="text/plain">
<h2>Example form</h2>
<form action="mailto:example@example.com" method="post" enctype="text/plain">
Name: <input type="text" name="name"><br />
Email: <input type="text" name="email">
</form>

If you want more functionality you'll need to use a backend scripting language such as PHP to handle form submissions.