+ 1
Is it possible to make form that send information to respected email address?
i know it is possible wht php? but anyone have idea without using php😀
5 ответов
+ 2
Use emailjs
+ 1
<form action="mailto:you@yourdmainhere.com" method="post" enctype="text/plain" >
FirstName:<input type="text" name="FirstName">
Email:<input type="text" name="Email">
<input type="submit" name="submit" value="Submit">
</form>
+ 1
Calviղ will it work
+ 1
No, mailto cannot use in action attribute, it's for anchor link only.