Jump to content

mail function sends to spam


9three

Recommended Posts

Hey,

 

I'm using the mail function to send emails but they are all landing in the spam folder. I've tried different emails and they all land in the spam/junk folder.

 

I'm sending HTML as well. I hope thats not causing it to send the email to the spam folder.

 

$headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
    
    $headers .= 'To: '.$toname.' <'.$toemail.'>,' . "\r\n";
    $headers .= 'From: xxxxx.com <[email protected]>' . "\r\n";
    
    if(mail($toemail, $subject, $msg, $headers))
    	return true;
    else
    	return false;

 

Those are the headers I use, I'm not sure if there is something extra I need to put in?

Link to comment
https://forums.phpfreaks.com/topic/177329-mail-function-sends-to-spam/
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.