bufhal Posted October 25, 2006 Share Posted October 25, 2006 Thank you for the link. I am getting close, but this is not working.I want the dropdown menu, when someone hits submit, to send the email (subject and message)to that person chosen in dropdown.I appreciate your help.[code]<?php $emails = array( 0 => '[email protected]', 1 => '[email protected]' , 2 => '[email protected]' , 3 => '[email protected]' , ); if (!empty($_POST['email_to']) && in_array($_POST['email_to'], $emails)) { if (mail( )) { echo 'Email sent'; exit(); } } ?> [/code] <center> <body bgcolor="#d0d0d0"> <hr><br> <h2>Please email us...</h2> <br><br> [code]<form action="mail2.php" method="POST"> <p><b>Subject</b><br> <input type="text" name="subject" size=50> <br><br> <select name="email_to"> <option value="1">Ela Teirn - Dir of Marketing</option> <option value="2">Jen B - Asia Sales</option> <option value="3">Rick P - Tech Support</option> <option value="4">General Marketing Inquiry</option> </select> <br><br><b>Message</b><br> <textarea cols=40 rows=10 name="message"></textarea><input type="submit" value=" Send "> </form> [/code] </body></center> </html> Link to comment https://forums.phpfreaks.com/topic/25092-thanks-for-the-link-can-you-take-a-look/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.