macrat101 Posted September 5, 2010 Share Posted September 5, 2010 the form results are being sent to the selected email address in the array ... but I need a copy sent to the admin email address as well. before adding the array addresses ... the forms results were being sent to the admin, but after adding the array ... the admin address is out of the loop. How do I get the [email protected] address to receive a copy of the forms results? I'm not sure if it needs to be a Bcc or what? Thanks in advance. ________________________________________________________________________________________ $to = $_POST["to"]; if(!in_array($to,array("[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]"))) $to = "[email protected]"; $subject = "Order"; Quote Link to comment https://forums.phpfreaks.com/topic/212611-php-contact-form-email-array-i-need-the-results-sent-to-the-admin-also/ Share on other sites More sharing options...
litebearer Posted September 5, 2010 Share Posted September 5, 2010 IF the emails are being sent to the array elements, why not simply add the admin as the last element in the array? Quote Link to comment https://forums.phpfreaks.com/topic/212611-php-contact-form-email-array-i-need-the-results-sent-to-the-admin-also/#findComment-1107601 Share on other sites More sharing options...
macrat101 Posted September 5, 2010 Author Share Posted September 5, 2010 The admin address is not one of the drop down choices ... it's not supposed to be seen by the user. The admin address is a back up copy ... of all form submissions. Quote Link to comment https://forums.phpfreaks.com/topic/212611-php-contact-form-email-array-i-need-the-results-sent-to-the-admin-also/#findComment-1107606 Share on other sites More sharing options...
litebearer Posted September 6, 2010 Share Posted September 6, 2010 WHEN you process the form, that is when you add the admin to the array Quote Link to comment https://forums.phpfreaks.com/topic/212611-php-contact-form-email-array-i-need-the-results-sent-to-the-admin-also/#findComment-1107933 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.