Để gửi email bằng biểu mẫu HTML, bạn cần thêm id email vào thuộc tính action của biểu mẫu. Trong đó, thêm email tiếp tục với mailto :tức là mailto:[email protected] .
Ví dụ
Bạn có thể thử chạy mã sau để gửi email bằng biểu mẫu 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>