radweb/swiftmailer-postmark

A Swiftmailer Transport for Postmark.

Installs: 483

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/radweb/swiftmailer-postmark

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

This package is auto-updated.

Last update: 2025-09-20 13:54:17 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);