phpmailer not sending email to gmail,yahoo,hotmail or these are blocking email sent by phpmailer
i am using PHPmailer to send emails here is code that i have used: $mail = new PHPMailer(); $subject = "test"; $to = "test_patel@yahoo.com" $mail->SetFrom("PDSociety@aol.com","Punjab Dental Society"); $mail->AddReplyTo("PDSociety@aol.com", "Punjab Dental Society"); $mail->Subject = $subject; $mail->MsgHTML($str); $mail->AddAddress($to, "Punjab Dental Society"); if(!$mail->Send()) { $err = "Mailer Error: " . $mail->ErrorInfo; //echo $err; } else { $msg = "Message sent!"; } // Clear all addresses and attachments for next loop $mail->ClearAddresses(); if i change email address from yahoo to gmail