A client of mine has just asked me if it's possible to modify the following snippet to send an email to 2 different email addresses;
// Get Data
$email = strip_tags($_POST['email']);
// Send Message
mail( "sampleemail@domain.com", "Holding page email submission",
"Email: $email",
"From: Hold Page <$email>" );
I didn't write the code so I'm not really sure how to do it.
Any ideas?