-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SMTP issue #53
Comments
Enable debug mode and test with another SMTP server. |
Anyone solved smtp issue? Google server is alo not sending any emails, although settings are correct |
The same issue, SMTP will not send any emails |
Google doesn’t support SMTP like that anymore. Use other services instead, "Your own SMTP server" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am having issues getting SMTP to work and send the emails. I know my information is correct as I use it on my PhPBB website and it works flawlessly. I am not sure what the issue might be besides that on PhPBB it asks
"Authentication method for SMTP:
Only used if a username/password is set, ask your provider if you are unsure which method to use."
It then has some options such as PLAIN or LOGIN, I use LOGIN to make my SMTP work and send the emails for registration on my PhPBB.
Desktop (please complete the following information):
This information works perfect for PhPBB
$config['smtp_host'] = 'smtp.comcast.net';
$config['smtp_port'] = 587;
$config['smtp_auth'] = true;
$config['smtp_user'] = 'username';
$config['smtp_pass'] = 'password';
$config['smtp_secure'] = 'ssl';
$config['smtp_mail'] = 'noreply.cheekybugger.net';
But this wont send for this website :/
The text was updated successfully, but these errors were encountered: