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??

link|improve this question

73% accept rate
2  
0% accept rate is not really acceptable, consider accepting some previous answers. – anubhava Feb 1 at 21:20
You do not need to set the 'To' header when sending e-mails since it is a separate argument in the mail() function – watcher Feb 1 at 21:25
1  
You have an extra linebreak before X-Mailer which would signify the start of the message body to clients. That wouldn't cause the mail() call to fail though. Please accept some earlier answers! – Michael Feb 1 at 21:38
Remove the To: headers and the erroneous extra new line as advised above, then reorder the headers so the mime and content type are at the end and add a new final header 'Content-Transfer-Encoding: 8bit'."\r\n\r\n"; after them (noting the double new line). – Paul Norman Feb 2 at 0:15
feedback

1 Answer

up vote 1 down vote accepted
    $headers .= 'To: Jack <Jack Johnson>' . "\r\n";

As mentioned in comments, this doesn't need to be there. But it will almost certainly cause a problem because it doesn't contain an email address

Also as mentioned in the comments, you have a double \r\n by including it at the start of

    $headers .= "\r\nX-Mailer: PHP/" ;

Finally, this shouldn't cause the problem, but you really shouldn't do it:

    $headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

Bcc lines do not belong in the header. They will appear in the header for all recipients, undermining the point of Bcc. You will find this is handled intermittently in different mail clients and services. Some will display it, some will just keep it, some will "kindly" hide it from the headers.

PHP's mail() isn't really designed to handle Bcc, so you will probably need to call the mail() function and separately send to the Bcc recipient

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.