I have fresh installation of Symfony 5.4. I have followed the documentation in order to send email from my own smtp server but couldn't make it work. So, I'm trying https://mailtrap.io/ with the following configurations with no luck. Any help is appreciated.
Steps followed
composer require symfony/mailer
composer require symfonycasts/verify-email-bundle
MAILER_DSN=smtp://d62b667a28d6af:[email protected]:2525 #MAILER_DSN=smtp://d62b667a28d6af:[email protected]:2525?encryption=tls&auth_mode=login
RegistrationController
...
// generate a signed url and email it to the user
$this->emailVerifier->sendEmailConfirmation('app_verify_email', $user,
(new TemplatedEmail())
->from(new Address('registration@my_host.com', 'Registration Confirmation'))
->to($user->getEmail())
->subject('Please Confirm your Email')
->htmlTemplate('registration/confirmation_email.html.twig')
);
mailer.yml
framework: mailer: dsn: '%env(MAILER_DSN)%'
run composer require symfony/messenger then run php bin/console messenger:consume async