andz Posted September 27, 2008 Share Posted September 27, 2008 it's been a while guys. i have a project here that require to send an email to different email addresses simultaneously. here's the basic layout of my codes. foreach ($emailAddres as $data) { mail(); } is it possible that for every email address that's been successfully an email being sent will have a confirmation? and also for those email adddress that sending of email failed will have a message. thank you. Quote Link to comment https://forums.phpfreaks.com/topic/126044-mail-and-foreach/ Share on other sites More sharing options...
sKunKbad Posted September 27, 2008 Share Posted September 27, 2008 You can send as many emails as you want, as long as your host doesn't place any limitations on you. Yes, you could use the foreach loop. If $emailAddres is a predefined array, and data that is placed in the email is being derived from a form, then you might consider using something like tectite.com's formmail. Quote Link to comment https://forums.phpfreaks.com/topic/126044-mail-and-foreach/#findComment-651907 Share on other sites More sharing options...
andz Posted September 27, 2008 Author Share Posted September 27, 2008 thanks for the response. how could i possibly echo a response where it will flagged a message to those email addresses where mail() function executes successfully. Quote Link to comment https://forums.phpfreaks.com/topic/126044-mail-and-foreach/#findComment-651910 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.