I am making a contact form. I've gotten a rudimentary version to work (gathering form info and sending an email from my site to my personal email) but I cannot seem to get the 'additional headers' to work. It works fine if I have the following headers:
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
But if I try and add additional Mail headers such as:
$headers .= 'To: Jack <Jack Johnson>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
$headers .= "\r\nX-Mailer: PHP/" ;
I get a 'fail' on the mail function. I'm using PHP version 5.3.8. To make sure the mail function is working I am doing this:
$sendmail = mail($email_to, $email_subject, $email_message, $headers);
if ($sendmail) {
echo '<div>Thanks for submitting!</div>';
} else {
echo '<div>Fail</div>';
}
I am kind of at a loss. Am I formatting this incorrectly??
mail()function – watcher Feb 1 at 21:25X-Mailerwhich would signify the start of the message body to clients. That wouldn't cause themail()call to fail though. Please accept some earlier answers! – Michael Feb 1 at 21:38