Hi all,
I’ve been trying to get the email sending to work on TastyIgniter for the last 2 days and I can’t seem to get it to work, I’m using AWS SES and already tried using both SES and SMTP protocols, when I test by clicking on the “Send Test Email” on the settings page the email is sent just fine (either with SES or SMTP), however, other emails are not sent.
This is my settings page:
and this is the error I’m getting in the logs:
I also updated my .env file to match what I have on the settings page (just in case):
What I find odd is that even though the settings is set to use the ses driver, the code is still trying to use the SMTP driver, for example, I just changed the port from 465 to 587, however, the code is still using the 465 port.
From the console, I already ran php artisan config:clear
and also updated the value for smtp_port
in the ti_settings
table in the database.
Any ideas on what might be the issue here?