BizLab Posted May 19, 2010 Share Posted May 19, 2010 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; } Link to comment https://forums.phpfreaks.com/topic/202308-phpmailer-mail-not-received-in-yahoo-mail/ Share on other sites More sharing options...
BizLab Posted May 19, 2010 Author Share Posted May 19, 2010 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. Link to comment https://forums.phpfreaks.com/topic/202308-phpmailer-mail-not-received-in-yahoo-mail/#findComment-1060849 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.