- 4
Please how can I make a web form submit darect into my email address
3 Respuestas
+ 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 ^^
+ 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 ;)
0
👍