Powered By Blogger

Tuesday 9 September 2014

How to create an email form that can send email using html


<html>
<body>

<h2>Send e-mail to someone@example.com:</h2>

<form action="MAILTO:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value="your name"><br>
Desination:<br>
<input type="text" name="comment" value="your comment" size="50"><br>
E-mail:<br>
<input type="text" name="mail" value="your email"><br>

<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>

</body>
</html>

No comments:

Post a Comment