Search by

symfony / mail-kite-mailer

Symfony MailKite Mailer Bridge

Maintainers

Package info

github.com/symfony/mail-kite-mailer

Homepage

Type:symfony-mailer-bridge

pkg:composer/symfony/mail-kite-mailer

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

8.2.x-dev 2026-08-29 06:14 UTC

This package is auto-updated.

Last update: 2026-09-02 12:26:23 UTC


README

Provides MailKite integration for Symfony Mailer.

Configuration example:

# SMTP
MAILER_DSN=mailkite+smtp://API_KEY@default

# same thing, shorter
MAILER_DSN=mailkite://API_KEY@default

# SMTP over implicit TLS (port 465)
MAILER_DSN=mailkite+smtps://API_KEY@default

# API
MAILER_DSN=mailkite+api://API_KEY@default

where API_KEY is your MailKite API key.

mailkite is an alias for mailkite+smtp, which submits to smtp.mailkite.dev:587 with STARTTLS. Use mailkite+api instead when outbound SMTP is blocked, which is common on PaaS hosts: it sends over HTTPS and reports the error message returned by the API on a failed send.

The API transport carries what the send endpoint accepts: sender, recipients, subject, text and HTML bodies, a single reply-to address (several are sent as a raw Reply-To header), attachments and custom headers. Inline (cid:) attachments are rejected, because the API has no Content-ID support and the reference would silently break; use the SMTP transport for those.

Resources