radweb / swiftmailer-postmark
A Swiftmailer Transport for Postmark.
3.0.0-beta
2018-05-11 16:15 UTC
Requires
- php: ^7.1
- guzzlehttp/guzzle: ^6.0
- swiftmailer/swiftmailer: ^6.0
Requires (Dev)
- phpunit/phpunit: ^7.0
This package is auto-updated.
Last update: 2024-10-20 12:01:29 UTC
README
An unofficial Swiftmailer Transport for Postmark.
You're just steps away from super simple sending via Postmark:
1. Include this package in your project:
composer require radweb/swiftmailer-postmark
2. Construct the Postmark Transport and pass it to your Swift_Mailer
instance:
$transport = new \Radweb\Postmark\Transport("<YOUR_SERVER_TOKEN>"); $mailer = new Swift_Mailer($transport);