0

When sending an Email in Symphony Mailer there needs to be a worker consumes it, before it is send. Therefore the files have to be stored in some place, but I cant find out where. I searched in my project, but i couldn't find anything in any directory. This Information could prove useful for finding and debugging Emails, when you do not receive them and if you want to know if they are still saved.

Ronexas
  • 17
  • 2
  • The mailer package files are stored in `/vendor/symfony/mailer`. Not sure what you're asking but the emails are not stored but processed by the package. – Bossman Sep 29 '22 at 20:46

1 Answers1

0

It depends on the Mailer's spool and path configuration.

See https://symfony.com/doc/4.4/reference/configuration/swiftmailer.html#spool

Also try php bin/console debug:config framework mailer

Julien B.
  • 3,023
  • 2
  • 18
  • 33