Jump to content

Anyone else having mail sending problems?


Recommended Posts

Since upgraded to 3.6.2 - emails can't be sent if I have the "PHPMail()" type selected rather than SMTP.

 

After a little bit of debugging, it seems to be an issue with the updated PHPMailer library included in 3.6.2 (overwriting with the old one fixes it).

 

Is anyone else having this issue and getting the error "Could not instantiate mail function."?

Link to comment
Share on other sites

Since upgraded to 3.6.2 - emails can't be sent if I have the "PHPMail()" type selected rather than SMTP.

 

After a little bit of debugging, it seems to be an issue with the updated PHPMailer library included in 3.6.2 (overwriting with the old one fixes it).

 

Is anyone else having this issue and getting the error "Could not instantiate mail function."?

 

Odd... I'm having the exact opposite problem. I can send with PHPMail(), but not with SMTP. Was working just before the update to 3.6.2 (from 3.6.1), but not after. I get:

 

Email Sending Failed - SMTP Error: Could not connect to SMTP host.

 

It doesn't matter whether or not I use a username/password, I can't seem to use any mail server anymore.

Link to comment
Share on other sites

I get that error if I use "localhost" - if I put in the FQN it works fine (to the same server!)

 

Unfortunately, that didn't work for me. Just tried it. Either way it fails. According to the debug logs, it is forced to use SMTP AUTH regardless if you specify a username/password. In the past, if you didn't specify it worked. Now, I may be forced to setup SMTP auth for local mail relay. What a PITA. I've already asked support about it. Hopefully there is something else I can do.

Link to comment
Share on other sites

same here. It used to work with version 3.6.1 after upgrading to 3.6.2. I cannot send mail anymore with or without username in smtp mail.

I get: Email Sending Failed - SMTP Error: Could not connect to SMTP host.

 

the smtp host is fully operation and the firewall is properly configured, if I change localhost to another mail server with a fully qualified host name I get the same error message

 

Just checked but phpmail works for me

Link to comment
Share on other sites

The class.phpmailer is not correctly forming the e-mail To: address sent to the remote server. I enabled trace logs on my mail server and here's what I noticed:

 

SENT: RCPT TO:<SteveWhite<d*****s@r****y.com>

RECEIVED: 555 5.5.2 Syntax Error 32si583632ugf.51

 

Notice the incorrect formatting of the RCPT command.

It should look like:

 

SENT: RCPT TO:SteveWhite <d*****s@r****y.com>

 

Replacing class.phpmailer with 3.6.1 cured the problem.

 

I'm cross-posting this to the bigs forum.

Link to comment
Share on other sites

  • 9 months later...

is any one having the same problem that i am having in v4 with emails sent in plain gibberish form. I did a bit of reading in this forum and replaced the v4 class.phpmailer.php with v3.8.1 and seems to be okay for now. Don't know if any side affects will arrive or why in v4 its not preforming as well.

Matt, v4 is amazing in style and programming. But can you shed some light on this subject.

Link to comment
Share on other sites

  • 3 weeks later...
is any one having the same problem that i am having in v4 with emails sent in plain gibberish form. I did a bit of reading in this forum and replaced the v4 class.phpmailer.php with v3.8.1 and seems to be okay for now. Don't know if any side affects will arrive or why in v4 its not preforming as well.

Matt, v4 is amazing in style and programming. But can you shed some light on this subject.

 

YES! I worked with Matt a fair bit on this and it wasn't really resolved - I had to resort to using php mail() instead of smtp. I'm still keen for a proper fix as 3.8.1 worked fine but 4.0 just doesn't work for me.

Link to comment
Share on other sites

  • 1 month later...
  • 3 years later...

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.   Paste as plain text instead

  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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated