+ 2
how to send submitted html form to email????
8 Answers
+ 2
I believe you'll need a server-side script like PHP and probably a database to handle and process the submitted data.
+ 1
don't understand. say clearly
+ 1
when user fill form and click on submit then how to send that data to specific email address/user emails
+ 1
like as some websites send confirmation emails and some input data
+ 1
you need php to Handel the form submission and SQL to handle user database information. Remeber people must be able to unsubscribe from regular or repeated email campaigns.
+ 1
you have to specify somethings that the user has to fill such as the sender, the reciever, the subject and the body of the email. then send it through mail(); function
Note: it doesn't work on localhost.. you have to try it online
0
you can use php or aspx to retreive the form data, then create an smtp object, configure and fill it and then send it to a mail account,
0
thank you