I have written a custom console command to query my database, produce a report and e-mail it to an address; however I can not seem to successfully send the e-mail. I can sen
Instead of memory spool use file spool. Modify your app/config/config.yml:
app/config/config.yml
swiftmailer: transport: "%mailer_transport%" host: "%mailer_host%" username: "%mailer_user%" password: "%mailer_password%" spool: { type: file, path: %kernel.root_dir%/spool }