1 geekasso Jul 27, 2009 18:02
3 geekasso Jul 28, 2009 20:00
**Update**
I just created a test email using PHPMail and it sent it fine, however within B2Evolution, I am still receiving an error.
** Edit **
I removed validate new user registration option and users are able to register. I navigated to Tools, Mail Sender and tried sending a message, but it failed. It seems something is wrong with the mail send statement within the blog system, but I cannot seem to find any help on this.
4 sam2kb Jul 28, 2009 21:29
Enable debugging in Mail sender plugin and post the output here.
On line 43 in _mail_sender.plugin.php set
var $debug = 2;
5 geekasso Jul 28, 2009 21:37
sam2kb wrote:
Enable debugging in Mail sender plugin and post the output here.
On line 43 in _mail_sender.plugin.php set
var $debug = 2;
Sam, thank you for your help. The output is as follows:
Warning: mail() [function.mail]: SMTP server response: 451 See http://pobox.com/~djb/docs/smtplf.html. in D:\Hosting\4123227\html\plugins\mail_sender_plugin\_mail_sender.plugin.php on line 754
** Edit **
Also, I see this printed under headers, and the quote may be causing an issue?
string(160) "From: =?utf-8?Q?Site=20Administrator?= <geekasso@gmail.com>
MIME-Version: 1.0
Content-Type: multipart/alternative; boundary="47fa9e84e70381fdf22e7363fda6f1a1""
6 sam2kb Jul 28, 2009 21:44
In Mail sender, line 619 edit
$NL = "\r\n";
I hope this'll fix the problem
7 sam2kb Jul 28, 2009 21:45
BTW according to D:\Hosting\4123227\html\plugins\mail_sender_plugin you are on Windoze hosting ;)
8 geekasso Jul 28, 2009 21:58
it used to be on Windows hosting, but I requested it to be moved to Linux. Perhaps that could be the reason?
9 geekasso Jul 28, 2009 22:03
sam2kb wrote:
BTW according to D:\Hosting\4123227\html\plugins\mail_sender_plugin you are on Windoze hosting ;)
Sam, the Mail Sender started working. Where can I make sure this is set for the validation email sending.
Thank YOU!!
10 sam2kb Jul 28, 2009 22:11
geekasso wrote:
Perhaps that could be the reason?
Of course it is, it clearly states D:\Hosting\4123227\html\plugins\mail_sender_plugin which is definitely not Linux
11 sam2kb Jul 28, 2009 22:15
Edit the same in inc/_core/_misc.funcs.php , around the line 1500
function send_mail( $to, $subject, $message, $from = NULL, $headers = array() )
{
global $debug, $app_name, $app_version, $current_locale, $current_charset, $evo_charset, $locales, $Debuglog, $notify_from;
$NL = "\r\n";
Apparently PHPMail is enabled on all Linux hosts, and I found this out in the latter emails. They are saying it's an issue with the code, however nothing was changed with it on my end.