wizpeep Posted October 15, 2008 Share Posted October 15, 2008 I have a form and want enquiries back to my email address Whats the easiest way to do this???? I am a total novice so all help gratefully accepted. The code is: <form name="form1" method="post" action=""> <div align="left"><span class="style24">name:</span> <br> <input name="name" type="text" class="formfield" id="name2" size="30" maxlength="30"> <span class="style24">company: </span><br> <input name="company" type="text" class="formfield" id="name" size="30" maxlength="30"> <br> <span class="style24">phone number </span><br> <input name="phonenumber" type="text" class="formfield" id="company" size="30" maxlength="30"> <br> <span class="style24">email address:</span><br> <input name="email" type="text" class="formfield" id="name" size="30" maxlength="40"> <br> <span class="style24">add your message here </span><br> <textarea name="textarea" cols="35" rows="6" class="formfield"></textarea> <input name="brochure" type="checkbox" id="brochure" value="brochure"> <span class="style24"> request brochure</span><br> <br> <input name="Submit" type="submit" class="submitbutton" value="submit"> <br> </div> </form> I want this returned to my email [email protected] Hope somebody can help Link to comment https://forums.phpfreaks.com/topic/128595-simple-feedback-form-struggling-to-configure/ Share on other sites More sharing options...
revraz Posted October 15, 2008 Share Posted October 15, 2008 Look up the MAIL function for PHP. You can also use mailto within HTML if you didn't want to use PHP. Link to comment https://forums.phpfreaks.com/topic/128595-simple-feedback-form-struggling-to-configure/#findComment-666467 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.