0
how shuold i create a format to be received to my email?
whem i press a buttom i would like to send to mail.
3 ответов
+ 1
try this one:
<button formaction="mailto:your_mail_here" name="somebutton">Send</button>
or you can use in <form> element:
<form method="get" action="mailto:your_mail_here">
...
<input type="submit">
</form>
0
for that you need to learn php
0
thanks alex, thats what i need!!