How to get that message to my email if someone fill up? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to get that message to my email if someone fill up?

<!DOCTYPE html> <html> <head> <title>email</title> <link href="https://fonts.googleapis.com/css?family=Italianno|Open+Sans" rel="stylesheet"> </head> <body> <div class="section"> <h1><span>Contact Me</span></h1> Send me some mail <br> <form action="mailto:email.com" method="post" enctype="text/plain"> <input name="name" type="text" placeholder="name" required/><br/> <input name="email" type="email" placeholder="email" required/><br/> <textarea name="message" placeholder="message" required></textarea> <input type="submit" value="SEND" class="submit" /> </form> </div> <!-- Form section end --> </body> </html>

7th May 2020, 6:12 PM
Yamo
Yamo - avatar
2 Answers
+ 1
By using php mail() function code you can send form data to our mail.
7th May 2020, 7:27 PM
Dasarath Singh
+ 2
Nicolae Crefelean I wanted to give him an easier answer to this...
22nd May 2020, 12:32 PM
Crystal.kerosene
Crystal.kerosene - avatar