Jump to content

from mail() $headers not being sent


DasHaas

Recommended Posts

I cannot seem to send the from header to change the recipient. Im not sure if it has anything to do with the host settings but it just displays the domain name as the sender. Here are my current headers

 

		
	$to = "[email protected]";
	$subject = 'ABD website contact message';
	$body = "$new_msg";

	//HTML mail headers
	$headers  .= 'MIME-Version: 1.0'.$eol;
	$headers .= 'Content-type: text/html; charset=iso-8859-1' .$eol;

	//Other headers
	$headers .= 'From: John Doe <[email protected]>'.$eol;
	$headers .= "Reply-To:".$name."<".$email.">".$eol;
	$headers .= "CC: [email protected]".$eol;

Link to comment
https://forums.phpfreaks.com/topic/87396-from-mail-headers-not-being-sent/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.