flipboxdigital / swiftmailer-postmark
This package is abandoned and no longer maintained.
The author suggests using the wildbit/swiftmailer-postmark package instead.
A Swiftmailer Transport for Postmark.
3.0.0
2017-12-04 14:37 UTC
Requires
- guzzlehttp/guzzle: ~6.0
- swiftmailer/swiftmailer: ~6.0
Requires (Dev)
- phpunit/phpunit: ~4.5
Suggests
This package is not auto-updated.
Last update: 2020-01-24 17:17:23 UTC
README
An official Swiftmailer Transport for Postmark.
Send mail through Postmark from your favorite PHP frameworks!
You're just steps away from super simple sending via Postmark:
1. Include this package in your project:
composer require flipboxdigital/swiftmailer-postmark
2. Construct the Postmark Transport and pass it to your Swift_Mailer
instance:
$transport = new \Postmark\Transport("<YOUR_SERVER_TOKEN>"); $mailer = new Swift_Mailer($transport);