Anyone knows whether there is some little coding or script for this. I would like people to answer my survey and then be able to send the email back to me by pressing a button on the bottom of the survey.
Not everyone accepts e-mails in HTML for security reasons. It would be much better to e-mail a link to your survey hosted on a web site IMO.
You can submit text-only surveys using the mailto scheme. For example: <form action="mailto:survey@my-domain.com" method="post"> <input type="text" name="subject"> <input type="text" name="body"> <input type="text" name="from" value="customer@their-domain.com"> <input type="submit" value="Submit"> </form> Code (markup): You can also use http for submission - the recipient would fill out the form in the email, but then would submit it using the http address you stick to "action". This way you are not restricted to a handful of search arguments, like body or subject. I don't think HTML would be a problem with most consumers (even companies don't block HTML that often) - you can send HTML forms. However, most mail programs simply block what's inside <script>, so the script wouldn't work most of the time. J.D.