如何发送HTML电子邮件?

时间:2014-09-13 06:33:29

标签: html email

如何以html格式发送电子邮件? 我编写了已发送的代码。

1 个答案:

答案 0 :(得分:3)

<html>
<head>
<title>E-mail form</title>
</head>
<body>
<form action="MAILTO:reciveremail@.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value="your name"><br>
E-mail:<br>
<input type="text" name="mail" value="your email"><br>
Comment:<br>
<input type="text" name="comment" value="your comment" size="100"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>
相关问题