我们如何使用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>
广告