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>