I\'m very new to PHP and am using a basic template \'send-mail\' form on a contact page. It\'s been requested that I send the email out to multiple email addresses when the
Just add multiple recipients comma seperated in your $mail_to variable like so:
$mail_to
$mail_to = 'nobody@example.com,anotheruser@example.com,yetanotheruser@example.com';
See mail() function in PHP