Tuesday, April 15, 2014

PHPMailer Mailer Error: Language string failed to load: data_not_accepted [SOLVED]

Go through the below steps :

I've experienced the same data_not_accepted problem.
This error is thrown by phpmailer/class.phpmailer.php, but it doesn't tell much, so I added

    var $SMTPDebug    = true;

 I found out that the problem was due to a connection timeout (the default is set to 10 sec in phpmailer/phpmailer/class.phpmailer.php), so I removed the debug line in admin/class.phplistmailer.php, and added the following line:

Set the value 60 instead of 10
    var $Timeout = 60;


I'm still testing it, but it seems to work better, I hope I don't have to give up with phpmailer

No comments:

Post a Comment