A Template Mailer for Neos Flow or/and CMS Projects.
This package provides a service class intended to be used as base class for sending fusion templates as mails. In addition it counatins a debugging aspect for cutting off and/or redirecting all mails (sent by Swiftmailer) in a development environment.
Versioning scheme:
1.0.0
| | |
| | Bugfix Releases (non breaking)
| Neos Compatibility Releases (non breaking except framework dependencies)
Feature Releases (breaking)
Releases und compatibility:
Package-Version | Neos Flow Version |
---|---|
1.1.x | >= 6.x |
1.0.x | 4.x - 5.x |
Configure default from address:
FormatD:
Mailer:
defaultFrom:
address: '[email protected]'
name: 'Example'
Extend AbstractMailerService and add methods as needed following the example of sendTestMail().
Configure swiftmailer to intersept all mails send by your neos installation (not only by the service).
This is an example which intercepts all mails and redirects them to [email protected] and [email protected]:
FormatD:
Mailer:
interceptAll:
active: true
recipients: ['[email protected]', '[email protected]']
bccAll:
active: false
recipients: []
The method AbstractMailerService->setMailContentFromStandaloneView()
has a parameter to embed all images into the mail body.
This is handy if you have an installation that is protected by a .htaccess file for example, or the user may not have access to the internet when reading the email. GMail also cannot display images if they are included from a local domain.
FormatD.Mailer can be configured to replace all image urls by local paths (if you specify a baseUrl in your flow configuration). This is needed it the server cannot make a web-request to itself (also maybe due to a .htaccess or something).
FormatD:
Mailer:
localEmbed: true
You can disable image embedding for specific images by adding data-fdmailer-embed="disable"
as data attribute to the image tag.
This is useful for tracking pixels where you dont want the local embedding.