coldfusion.developer, See my previous post.. It worked for me but as mentioned I had to open it outside the preview pane and set my mail format to html
Kola -----Original Message----- From: Ryan Kime [mailto:[EMAIL PROTECTED]] Sent: 14 June 2002 15:15 To: CF-Talk Subject: RE: <CF_Forms_in_HTML_E-Mail> No Answers yet Ummm.....the email won't do <cfform> either like you suggested. I think he copied the page that sends the mail, including the cfmail tags. So really what is being sent is starting at the <form> tags. Hey coldfusion.developer, Answer this - are you trying to send your test message while looking at it in the preview pane? Make sure you double click the email and open it up, from there you should be able to send the form. Good Luck! -----Original Message----- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 7:13 AM To: CF-Talk Subject: RE: <CF_Forms_in_HTML_E-Mail> No Answers yet That form has to work on the server. I think what you need to do is have a basic form with the questions on it with a form tag as follows: <cfform action="http://yoursite/directorystructure/sendmail.cfm" method="POST" enablecab="no"> That way when submit is hit outlook will call on the cf server process the form and send out the results. I do this all the time on little surveys and have never had a problem. Your problem is that outlook has no Idea what <cfmail> is and does not process it. If you have any questions contact me off list. Joshua Tipton -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 6:03 PM To: CF-Talk Subject: <CF_Forms_in_HTML_E-Mail> No Answers yet Hello, No one seems to be able to answer this one ... Sending an HTML e-mail using cfmail ... In the HTML E-mail is a basic form ... When I hit submit from within Outlook, the form won't process. Why? CODE: <CFMAIL to="[EMAIL PROTECTED]" from="[EMAIL PROTECTED]" subject="HTML FORM E- MAIL" type="HTML"> <form action="http://www.domainname.com/proccess.cfm" method="post"> <table align="left" border="0" width="50%" cellpadding="4" cellspacing="0"> <tr> <td align="left" >Question 1: How is the evaluation of our product going?</td> <tr> </tr> <td align="center"> <select name="q1" size="1"> <option value="1" SELECTED>Select an Answer</option> <option value="2">Ready to Place an Order</option> <option value="3">Need More Time</option> <option value="4">Need Some Help</option> <option value="5">No Purchases Planned</option> <option value="6">Never Received Sample</option> </select> </td> <tr></tr> <td align="left" >Question 2: Are there any issues or conerns you need help with?</td> <tr> </tr> <td align="center"> <select name="q1" size="1"> <option value="1" SELECTED>Select an Answer</option> <option value="2">No Problems</option> <option value="3">Need a Application Enginner</option> <option value="4">Products Aren't Working</option> <option value="5">Took to Long to Get Sample</option> <option value="6">Something Else</option> </select> </td> <tr></tr> <td align="left" >Question 3: Why is Steve so successful?</td> <tr></tr> <td align="center"> <select name="q1" size="1"> <option value="1" SELECTED>Select an Answer</option> <option value="2">Good Looks</option> <option value="3">Brains</option> <option value="4">Charm and Wit</option> <option value="5">Product Knowledge</option> <option value="6">All of the Above</option> </select> </td> <tr></tr> <td align="center"> <input type="submit" name="submit" value="Submit Information"> </td> </tr> </table> </form> </CFMAIL> D- ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

