flipboxdigital / swiftmailer-postmark
A Swiftmailer Transport for Postmark.
Installs: 3 198
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 16
pkg:composer/flipboxdigital/swiftmailer-postmark
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);