Please how can I make a web form submit darect into my email address | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

Please how can I make a web form submit darect into my email address

15th Jun 2021, 6:46 PM
Neddy Glen
Neddy Glen - avatar
3 Answers
+ 2
by using 'mailto' protocol inside form action attribute: <form action="mailto:myname@domain.ext" method="POST"> but you must be aware that it will not directly send the email: it rather open the default mail client of visitor, wich need to manually send the prefilled mail ^^
15th Jun 2021, 6:53 PM
visph
visph - avatar
+ 2
the only other alternative is to send the form data to server, then handle it on server side to send data to your email: there's no direct way to send form data to email ;)
15th Jun 2021, 7:29 PM
visph
visph - avatar
0
👍
30th Oct 2021, 9:16 AM
Neddy Glen
Neddy Glen - avatar