I'm trying to make a web-app where one submits a form, and it sends the results of the form to an email (my email, at first). I've tried many different things using HTML forms, but none seem to work.
This was from a form example source code that I was trying to use, just for email sending. I think the problem is the action link is registered to the place I got it from, or something like that, and/or I'm not sure what to put in the first and fourth line.
<form method="POST" action="http://public.registerdirect.co.nz/cgi-bin/formmailer.cgi">
<input type="hidden" name="to" value="email@mydomain.co.nz">
<input type="hidden" name="subject" value="The Message Subject">
<input type="hidden" name="next_url" value="http://www.mysite.co.nz/thankyou.html">
<input type="text" name="comments">
</form>
How do I send the results of a form to someone's email?
I've heard that you need to use a side-server, but I can't figure that out either.