Saturday 13 May 2017

html send email

Send e-mail to someone@example.com:



reference:
https://www.w3schools.com/html/tryit.asp?filename=tryhtml_form_mail


<html>
<head>
</head>
<body>
<h2>Send e-mail to someone@example.com:</h2>
<form action="mailto:" enctype="text/plain" method="post">
<input type="submit" value="Open e-mail" />
</form>
</body>
</html>

No comments:

Post a Comment