How can I get the Contact Form in Habitat to go to 3 different email addresses?
Thanks.
How can I get the Contact Form in Habitat to go to 3 different email addresses?
Thanks.
In send.php replace following line:
$to = $_POST['myemail'];
with:
$to = 'myemail1@mail.com,myemail2@mail.com,myemail3@mail.com';
and instead of myemail1@mail.com, etc. insert your own email adresses; seperated by commas (,).
You must log in to post.