我们如何使用HTML表单发送电子邮件?


要使用HTML表单发送电子邮件,需要将电子邮件ID添加到表单的action属性中。其中,在电子邮件前加上mailto:,即mailto:[email protected]

示例

可以尝试运行以下代码,使用HTML表单发送电子邮件:-

在线演示

<!DOCTYPE html>
<html>
   <body>
      <h2>Student Contact Form</h2>
      <form action="mailto:[email protected]" method="post" enctype="text/plain">
         Student Name:<br><input type="text" name="sname"> <br>
         Student Subject:<br><input type="text" name="ssubject"><br>
         <input type="submit" value="Send">
      </form>
   </body>
</html>

更新于:2023年9月2日

56K+浏览

开启您的职业生涯

完成课程以获得认证

开始
广告