denial Posted August 12, 2022 Share Posted August 12, 2022 Hi there, I would like to add another email address to my code below: <?php include "../lib/include.php"; $yesterdayDate = date("Y-m-d 09:00:00", strtotime("-1 days")); $query = "select * from links where status = 1 and cc_payment_id != '' and payment_date >= '".$yesterdayDate."' and payment_date <= '".date("Y-m-d 08:59:59")."'"; $q = $db->query($query); foreach ($q AS $a) { $mail_content .= "".$a["pay_url"]." -> Paid<br>"; } if ($mail_content != "") { SendMail($settings["system_email"],$mail_content,"Paid Reservations"); } Will it work and be enough if I make a change as below: SendMail("email1@domain1.com; email2@domain2.com",$mail_content,"Paid Reservations"); Thank you in advance. Quote Link to comment https://forums.phpfreaks.com/topic/315175-adding-a-new-email-address/ Share on other sites More sharing options...
requinix Posted August 13, 2022 Share Posted August 13, 2022 Maybe. Maybe not. Really hard to tell since we don't know how SendMail works. Try it and find out. Quote Link to comment https://forums.phpfreaks.com/topic/315175-adding-a-new-email-address/#findComment-1599310 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.