srobinsr Posted January 11, 2006 Posted January 11, 2006 One of my pages is a Suggestion Form. I am trying to get the form to send to an email address. It doesn't work. How would I go about the fix? Quote
abinidi Posted January 11, 2006 Posted January 11, 2006 I think you're going to have to provide a bit more information. What kind of form are you using? Did you write it yourself? What language? PHP? JSP? JavaScript? Can you provide a code sample of the part you can't get to work? Your question is too vague to get any kind of knowledgeable response. But reply with answers to some of these questions and I'm sure that somebody will be able to help you. Oh, and BTW, welcome to the TCH forums. Quote
srobinsr Posted January 11, 2006 Author Posted January 11, 2006 I think you're going to have to provide a bit more information. What kind of form are you using? Did you write it yourself? What language? PHP? JSP? JavaScript? Can you provide a code sample of the part you can't get to work? Your question is too vague to get any kind of knowledgeable response. But reply with answers to some of these questions and I'm sure that somebody will be able to help you. Oh, and BTW, welcome to the TCH forums. Here is my website. nicholslandinghomeowners.com I used FrontPage to design it. According to FrontPage, here is the reason Saving Form Results to E-Mail will not work unless either the "SMTPHost" or "SendmailCommand" server configuration parameters are set. Could someone help? Quote
TCH-Rob Posted January 11, 2006 Posted January 11, 2006 Moving to the FrontPage forums for better exposure. Quote
Carin Posted January 19, 2006 Posted January 19, 2006 This is just a simple form in html and dutch so I wil ltry to change and give a few pointers it is frontpage compatible.... I use it as contact form for my cattery <form method="POST" enctype="text/plain" action='mailto:email@email.com?subject=Kittens'> <p><strong> what do you want to ask?</strong></p> <dl> <dd> <input type="radio" name="MessageType" value="kittens">Kittens <input type="radio" name="MessageType" value="main">Main <input type="radio" name="MessageType" value="main2">Main2 </dd> </dl> <p><strong>Subject </strong></p> <blockquote> <p><input type="text" size="26" maxlength="256" name="Subject"></p> </blockquote> <p><strong>Text here.<br> Enter your comments in the space provided below:</strong></p> <dl> <dd><textarea name="Comments" rows="5" cols="42"></textarea></dd> </dl> <p> </p> <dl> <dd> <table> <tr> <td>Name</td> <td> <input type="text" size="35" maxlength="256" name="Username"></td> </tr> <tr> <td>E-mail</td> <td> <input type="text" size="35" maxlength="256" name="UserEmail"></td> </tr> </table> </dd> </dl> <p><input type="submit" value="Submit Comments"> <input type="reset" value="Clear Form"></p> </form> Just copy form, paste in frontpage in the code view, and adjust to your needs in the design view if you wish. My main rule if you stay of any of the coding it works Make sure to change the email addy to your own. Marked in red on this forum Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.