how i can post my form to email? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how i can post my form to email?

12th Aug 2016, 8:56 PM
hossinforughi
2 Answers
+ 3
it will require some knowledge of php. You have to write your form element like <form action="email.php"method="POST">. Then configure email.php to proccess and send the mail
13th Aug 2016, 8:53 AM
Bekir Uzun
Bekir Uzun - avatar
+ 1
try to make form like this <form action="mailto:someone@example.com" method="post" enctype="text/plain">. it will use your mail client to send data.
3rd Sep 2016, 9:21 AM
Jiří Tomeš
Jiří Tomeš - avatar