Hi, maybe just a simple edit but I need to add an additional email for my form to goto. Is this simply done?
my current form is shown below:
<?php
//create short variable names
$firstname=$_POST['firstname'];
$lastname=$_POST['lastname'];
$email=$_POST['email'];
$mobile=$_POST['mobile'];
$toaddress = 'hiphopbiter2222@hotmail.com';
$subject = 'Mailing List Add';
$mailcontent = 'Customer First Name: '.$firstname. "\n"
.'Customer Last Name: '.$lastname. "\n"
.'Customer Email: '.$email. "\n"
."Customer Mobile: \n".$mobile. "\n";
$fromaddress = 'From: Cicily B Mailing Form';
mail($toaddress, $subject, $mailcontent, $fromaddress);
?>
thx
Ben