Jump to content

Phpmailer No Sending To Certain Email Addresses


Aaron4osu

Recommended Posts

I have a form that sends a confirmation email to the user who filled out the form. It worked for a while then suddenly stopped working for my email address which I had been using to test the form. It still forms for some email address, just not one with a specific domain. Could their be any kind of spam filter issues for how I have it configured?

 

$mail->SetFrom('emailAddress', 'Name');$mail->AddReplyTo('emailAddress', 'Name');
$mail->AddAddress('emailAddress', 'Name');$mail->Subject = $subject;$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($requester_message);if(!$mail->Send()) {  echo "Mailer Error: " . $mail->ErrorInfo;} else {  //echo "Message sent!";} // end else

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.