我们如何使用 HTML 表单发送电子邮件?
若要使用 HTML 表单 发送电子邮件,你需要将电子邮件 ID 添加到表单的 action 属性中。添加 email,用 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>
广告