Code: Select all
$toaddress = "jim@designedimages.com";
$subject = "Quote/Comment request from $from_name";
$mailcontent = "Customer Name: ".$from_name."\n"
."Customer Email: ".$from_email."\n"
."Customer Comments: \n".$message."\n";
$fromaddress = "From: ".$from_email."\n";
mail($toaddress, $subject, $mailcontent, $fromaddress);Obviously the send mail works, but won't send to their local address. Since it is a local address do I just specify the email address as "jim" only???
Any help is appreciated.
Thanks - Steve