Hi guys, I would just like to know how to beable to submit a form to 2 email addresses. I am using a .php form and this is how my html coding goes with a single email address: $to = "[email protected]"; $from = $_POST['email']; $subject = "Website Enquiry"; Let me know, thanks! [Links removed - Admin]
Separating email address with comma in the $to field should do the trick I believe. $to = "[email protected], [email protected]";