Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How do we send an email using HTML forms?
To send an email using HTML forms, you need to add the email id to the action attribute of the form. In that, add email proceeding with mailto: i.e. mailto:emailid@example.com.

Example
You can try to run the following code to send an email using HTML forms ?
<!DOCTYPE html> <html> <body> <h2>Student Contact Form</h2> <form action="mailto:emailid@example.com" 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>
Advertisements
