Search by

pufferpost / symfony-mailer

JeroenMoonen

This package is abandoned and no longer maintained. The author suggests using the symfony/puffer-post-mailer package instead.

Deprecated: use the symfony/puffer-post-mailer bridge instead.

Package info

github.com/pufferpost/symfony-mailer

pkg:composer/pufferpost/symfony-mailer

Statistics

Installs: 9

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.4 2026-09-18 11:44 UTC

This package is auto-updated.

Last update: 2026-09-18 11:44:36 UTC


README

Deprecated. Use symfony/puffer-post-mailer instead. It is maintained in the Symfony monorepo, registers the same pufferpost+api:// DSN, and now carries the template support this package was written for.

Both packages register the same DSN scheme, so installing them together leaves the winner to package order. Remove this one:

composer remove pufferpost/symfony-mailer
composer require symfony/puffer-post-mailer

Templated sending moves from MailerEmail to headers on a plain Email:

$email->getHeaders()->addTextHeader('X-PufferPost-Template-Id', 'tpl_welcome');
$email->getHeaders()->addTextHeader('X-PufferPost-Data', json_encode(['name' => 'Jane']));

Batch sending and workflow triggers stay in pufferpost/sdk.