I got some trouble with mails generation on my Symfony app :
I use docker when I use Gmail to send emails :
MAILER_URL=gmail://[email protected]:MyPw@localhost
everything works fine
but as soon as I try to intercept these mails :
======================
Like this for mailtrap
MAILER_DSN=smtp://b3f077aeceaeb6:[email protected]:2525?encryption=tls&auth_mode=login
MAILER_URL=smtp://smtp.mailtrap.io:25&auth_mode=login&username=b3f077aeceaeb6&password=8792a1811dd8ef
or like this for mailHog
MAILER_DSN=smtp://localhost:1025
MAILER_URL="smtp://mailhog:1025?encryption=ssl&auth_mode=login&username=null&password=null"
my docker-compose.yml looks like this :
mailhog:
container_name: mailhog
restart: always
image: mailhog/mailhog:latest
ports:
-'8025:8025'
-'1025:1025'
Does anyone know how to see the mails displayed in mailhog? mailhog page is loaded correctly but nothing shows in it. The function sending the mail is entered, so this must be a configuration problem in my opinion
Based on your post, I had a similar problem with mailhog and SwiftMailer for Symfony.
I ended up using the smtp for both
MAILER_DSN
andMAILER_URL
as followsAs you can see the trick was to remove
encryption=ssl
as the mailhog does not supports it and theusername=null&password=null
as the software sends it as literal string"null"
.Besides, in my
swiftmailer.yaml
andmailer.yaml
I have this very simple configuration