• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML questions with e-mail

Kirkendall

Junior Member
All,

I am developing a survey for the company I work for. This is not my specialty and I'm just helping out doing this because everyone in our e-commerce group is very busy. Anyway, I'm trying to develop an e-mail that's basically a form created in HTML. All they have to do is fill out the form that's e-mailed to them and push the submit button. I have the form created, now the only thing I need help with is making it an e-mail and after they submit the form, it gives them a response back. I don't want to send this as an attachment nor do I want to direct them to a website. We are trying to make this as easy for the customers as possible. Also this has to be done in Outlook 2000. Any suggestions would be great and thank you for your help in advance.

 
You have the submit button doing mailto:Email@domain.com right? The return email is somewhat more difficult, you'n need an auto-responder or something of the sort. A nice javascript popup after they click the button is always an easy alternative.
 
I have the submit button using a form tag. <form action=&quot;mailto:email@domain.com&quot; method=&quot;post&quot; enctype=&quot;text/plain&quot; name=&quot;Response&quot;> and that works, but I can't get a response for the user after they hit the submit button. Now I have to have an auto-responder as a CGI program, right?

 
Back
Top