0
how i can post my form to email?
2 Respostas
+ 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
+ 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.