radweb/swiftmailer-postmark

A Swiftmailer Transport for Postmark.

3.0.0-beta 2018-05-11 16:15 UTC

This package is auto-updated.

Last update: 2024-04-20 10:46:31 UTC


README

CircleCI

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);