spatie / laravel-mailcoach-mailer
The driver for sending transactional mails using Mailcoach in Laravel
Installs: 110 902
Dependents: 0
Suggesters: 0
Security: 0
Stars: 19
Watchers: 3
Forks: 6
Open Issues: 3
Requires
- php: ^8.1
- illuminate/contracts: ^9.42|^10.0|^11.0
- spatie/laravel-package-tools: ^1.13.7
- spatie/mailcoach-mailer: ^1.2
Requires (Dev)
- larastan/larastan: ^2.2.9
- laravel/pint: ^1.2.1
- nunomaduro/collision: ^6.3.1|^7.0|^8.0
- orchestra/testbench: ^7.15|^8.0|^9.0
- pestphp/pest: ^1.22.2|^2.0
- pestphp/pest-plugin-laravel: ^1.3|^2.0
- phpstan/extension-installer: ^1.2
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.2.2
- spatie/invade: ^1.1.1
- spatie/laravel-ray: ^1.31
README
Mailcoach is an affordable platform for all things mail. It can send campaigns to list of any size. It also provides flexible email automation to set up drip campaigns and more.
Finally, you can also use Mailcoach to send transactional mails. This package contains a driver so you can send any mailable through Mailcoach.
// will be sent through mailcoach Mail::to('john@example.com')->send(new OrderShippedMail());
On mailcoach.app, you can see an archive of sent mails.
If you activated the feature, you can also see the opens and clicks of all transactional mails. It's also possible to resend any transactional mails straight from the Mailcoach UI.
Additionally, you'll also be able to create email templates on Mailcoach and use those templates in your app. This is great for marketeers without technical knowledge. They can now write mails without a developer needing to make any code changes.
This is how you would send a mail using a Mailcoach template.
public function build() { $this ->mailcoachMail('name-of-your-mailcoach-template') ->replacing(['placeholderName' => 'placeHolderValue']); }
If you want to send a mail notification using a mailcoach template, you can do that in the following way.
public function toMail() { return (new MailCoachMessage()) ->usingMail('name-of-your-mailcoach-template') ->replacing(['placeholderName' => 'placeHolderValue']); }
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Documentation
You'll find full documentation on this page of the Mailcoach docs.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.