Jump to content

PHPMailer (mail) Not Received in Yahoo mail!!


BizLab

Recommended Posts

I am sending phpmailer mail to Yahoo accounts and it is not getting through. This same system sends mail perfectly to gmail and webmail (Outlook) with no issues and no junk mail box filing... Any ideas code follows:

 

	
        $mail = new PHPMailer;
$mail->ClearAddresses();
$mail->AddAddress($email, $first_name . ' ' . $last_name); 
$mail->From = '[email protected]';
$mail->FromName = 'domain.com';
$mail->Subject = 'domain.com Email Verification';
$mail->Body = $msg;
$mail->isHTML = true;
$mail->AltBody = text;
if($mail->Send()){ 
	return 'sent';
}	
else{ 
	$error = $mail->ErrorInfo;
	return $error;
} 

 

Well, i guess i didn't wait long enough. The mail just arrived in my test mailbox. I had a client waiting for the email for over 20 minutes. It took over 30 to arrive. This same email only takes 1.5 minutes to reach webmail accounts.. Yahoo mail is ballssss lol

 

New question, the email DID end up in the spam box in yahoo and not is other mail clients, INCLUDING windows live. Any ideas on techniques to keep the emails out of the spam box. They are sent individually, and contain a viewable link (the link path is displayed in the hypertext).

 

I'm sure there are a few people wondering the same question.

 

 

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.