soupy127 Posted May 23, 2010 Share Posted May 23, 2010 I have this form set up <form action="emailbooking.php" method="send"> <table> <tr> <td>Name:</td> <td> <input type="text" name="name" value="" maxlength="100" /></td> </tr> <tr> <tr><td>To:</td> <td><select name="email"> <option value ="[email protected]">Royal Portrush Golf Club</option> <option value ="[email protected]">Royal County Down Golf Club</option> <option value ="[email protected]">Portstewart Golf Club</option> <option value ="[email protected] ">Moyola Park Golf Club</option> <option value ="[email protected]">Belvoir Park Clubhouse</option> <option value ="[email protected]">Castle Rock Golf Club</option> <option value ="[email protected]">Ardglass Golf Club</option> </select></td> <tr><td>From(Email Address): </td> <td> <input type="text" name="emailfrom" value="" maxlength="200" /></td> </tr> <tr><td>Subject: </td> <td> <input type="text" name="subject" value="" maxlength="75" /></td> </tr> <tr> <td>Query:</td> <td> <textarea rows="3" cols="20" name="query"></textarea></td> </tr> <tr><td> </td> <td> <input type="submit" value="Send" /></td> </tr> </table> just wandering how I can make the from send to whatevery email address the user selects from the drop down menu?? any ideas, any help would be greatly appreciated !! thanks Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/ Share on other sites More sharing options...
-Karl- Posted May 23, 2010 Share Posted May 23, 2010 <form action="emailbooking.php" method="post"> <table> <tr> <td>Name:</td> <td> <input type="text" name="name" value="" maxlength="100" /></td> </tr> <tr> <tr><td>To:</td> <td><select name="email"> <option value ="[email protected]">Royal Portrush Golf Club</option> <option value ="[email protected]">Royal County Down Golf Club</option> <option value ="[email protected]">Portstewart Golf Club</option> <option value ="[email protected] ">Moyola Park Golf Club</option> <option value ="[email protected]">Belvoir Park Clubhouse</option> <option value ="[email protected]">Castle Rock Golf Club</option> <option value ="[email protected]">Ardglass Golf Club</option> </select></td> <tr><td>From(Email Address): </td> <td> <input type="text" name="emailfrom" value="" maxlength="200" /></td> </tr> <tr><td>Subject: </td> <td> <input type="text" name="subject" value="" maxlength="75" /></td> </tr> <tr> <td>Query:</td> <td> <textarea rows="3" cols="20" name="query"></textarea></td> </tr> <tr><td> </td> <td> <input type="submit" value="Send" name="submit"/></td> </tr> </table> <?php if (isset($_POST['submit'])) { $to = $_POST['email']; $subject = $_POST['subject']; $message = $_POST['query']; $from = $_POST['emailfrom']; $headers = 'From:' . $from . '<' . $from . '>'; mail($to, $subject, $message, $headers); echo 'Message sent'; } ?> Something like that. Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062361 Share on other sites More sharing options...
soupy127 Posted May 23, 2010 Author Share Posted May 23, 2010 thanks very much for your reply, I copy and pasted your code and nothing seemed to happen, i entered a test email address which is my own and it didnt seem to do anything ! thanks for your help again Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062372 Share on other sites More sharing options...
-Karl- Posted May 23, 2010 Share Posted May 23, 2010 Mm, it worked for me. (The echo came up). However, I cannot check if the email was sent correctly. Pretty sure what the problem is, if you didn't receive an email. <form action="emailbooking.php" method="post"> <table> <tr> <td>Name:</td> <td> <input type="text" name="name" value="" maxlength="100" /></td> </tr> <tr> <tr><td>To:</td> <td><select name="email"> <option value ="[email protected]">Royal Portrush Golf Club</option> <option value ="[email protected]">Royal County Down Golf Club</option> <option value ="[email protected]">Portstewart Golf Club</option> <option value ="[email protected] ">Moyola Park Golf Club</option> <option value ="[email protected]">Belvoir Park Clubhouse</option> <option value ="[email protected]">Castle Rock Golf Club</option> <option value ="[email protected]">Ardglass Golf Club</option> </select></td> <tr><td>From(Email Address): </td> <td> <input type="text" name="emailfrom" value="" maxlength="200" /></td> </tr> <tr><td>Subject: </td> <td> <input type="text" name="subject" value="" maxlength="75" /></td> </tr> <tr> <td>Query:</td> <td> <textarea rows="3" cols="20" name="query"></textarea></td> </tr> <tr><td> </td> <td> <input type="submit" value="Send" name="submit"/></td> </tr> </table> <?php if (isset($_POST['submit'])) { $name = $_POST['name']; $to = $_POST['email']; $subject = $_POST['subject']; $message = $_POST['query']; $from = $_POST['emailfrom']; $headers = 'From:' . $name . '<' . $from . '>'; mail($to, $subject, $message, $headers); echo 'Message sent'; } ?> This works fine for me, I've tried it on my own email address on my server. Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062380 Share on other sites More sharing options...
soupy127 Posted May 24, 2010 Author Share Posted May 24, 2010 really sorry chum, but still nothing ! thanks alot again for your help. Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062383 Share on other sites More sharing options...
-Karl- Posted May 24, 2010 Share Posted May 24, 2010 Not sure what else to say, I received the emails when testing it. I also carried out some debugging by echoing the mail strings. Are you sure you completed the entire form and didn't leave any blanks? Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062387 Share on other sites More sharing options...
soupy127 Posted May 24, 2010 Author Share Posted May 24, 2010 getting this error Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\wamp\www\Final\adminbookingform.php on line 88 Message sent think it might go away when i upload it to my website, hopefully that will fix the problem ! Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062388 Share on other sites More sharing options...
-Karl- Posted May 24, 2010 Share Posted May 24, 2010 Yeah, it's WAMP that's the problem, you don't have a mailserver installed! On a live webserver it will work fine. Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062390 Share on other sites More sharing options...
soupy127 Posted May 24, 2010 Author Share Posted May 24, 2010 thanks alot again for all your help, your a life saver!! Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062391 Share on other sites More sharing options...
-Karl- Posted May 24, 2010 Share Posted May 24, 2010 Not a problem, just mark the post as solved (bottom left of the post). Quote Link to comment https://forums.phpfreaks.com/topic/202681-have-a-couple-of-hours-to-get-this-working-plz-help/#findComment-1062392 Share on other sites More sharing options...
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.