MyBB Community Forums

Full Version: SMTP class isn't sending email
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
$settings['secure_smtp'] = "0";
$settings['smtp_host'] = "smtp.wp.pl";
$settings['smtp_pass'] = "mypass";
$settings['smtp_port'] = "587";
$settings['smtp_user'] = "[email protected]";
It says in recover account that email is send but it's not in my inbox/spam or whatever.
I have tried my own phpmailer and such settings and it was working fine so I have completly no idea what's wrong here...
MyBB version : 1.4.11
System mail log:
The mail server does not understand the MAIL FROM command. Reason: 554 sorry, mailfrom without @ is administratively denied
Fixed i just had to add $settings['adminemail'] = "[email protected]"; in settings.php.
That settings should already be in there... if you have to edit the file you have to edit the settings in the ACP too, that setting is in the General Configuration options.