appventus / spoolmailerbundle
Database spool emails
Installs: 15 440
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 4
Forks: 4
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.3.3
- appventus/swiftmailerdbbundle: ~1.0
- swiftmailer/swiftmailer: >=4.2.0
- symfony/swiftmailer-bridge: >=2.1.0
- symfony/swiftmailer-bundle: >=2.1.0
README
Allow you to store your mails as a spool and send transactionnal direct mails or store it in db
- Installation
This bundle is on Packagist here : https://packagist.org/packages/appventus/spoolmailerbundle
- Configuration :
Import this in your config.yml : - { resource: @AvSpoolMailerBundle/Resources/config/config.yml }
Always in config.yml, overwrite the sender mail config:
av_awesome_spool_mailer:
contact_addresses:
admin:
address: [yours]
name: [yours]
noreply:
address: [yours]
name: [yours]
...
Add your owns, each row inside contact addresses will automatically be accessible in the parameter bag following this scheme :
example :
contact_addresses_**KEY**_address
- Usage :
You can spool message in db with : $this->get('spool_mailer')->queueMessage($message);
You can send instant email in controller with : $this->get('instant_mailer')->send($message);
To send spooled messages, call : php app/console swiftmailer:spool:send