eschmar / mailer-bundle
Conveniently send html/plaintext emails in Symfony 4.
Installs: 244
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Type:symfony-bundle
Requires
- php: >=7.1.0
- eschmar/css-inliner-bundle: ^1.0.0
- symfony/swiftmailer-bundle: ^3.2.3
- twig/twig: ^2.4.4
This package is auto-updated.
Last update: 2024-10-11 20:10:10 UTC
README
Conveniently send html/plaintext emails in Symfony4. This bundle ships with a version of Mailgun's Action Email ready to send emails.
Installation
Composer (Packagist):
composer require eschmar/mailer-bundle ^1.0.0
Usage
The eschmar_mailer
service expects templates to have the 3 blocks subject
, body_html
and body_plain
and already includes a layout file @EschmarMailer/Mail/layout.html.twig
ready to go. I do not recommend using embedded base64 images, this is just for demo purposes. Of course this layout is entirely optional, you may build your own templates. Using the Twig tag {% cssinline %}{% endcssinline %}
, CSS styles are inlined (some email clients strip out <head>
and <style>
tags).
use Eschmar\MailerBundle\Service\Mailer; // ... if (!$mailer->send("@EschmarMailer/Mail/test.html.twig", [], $from, $to[, $bcc])) { // Oops! return; } // success
License
MIT License.