-
Notifications
You must be signed in to change notification settings - Fork 233
Description
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):
- OS: Windows 10
- Server core: cMaNGOS
- Game version: 1.12.1-3.3.5a
- PHP version: 8.0.7
- Browser Brave
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 :/