Skip to content

Commit

Permalink
[Mailer] Add mailomat mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
plandolt committed Jun 20, 2024
1 parent 276ac93 commit 15dcd7e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions mailer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ Service Install with Webhook su
`Infobip`_ ``composer require symfony/infobip-mailer``
`Mailgun`_ ``composer require symfony/mailgun-mailer`` yes
`Mailjet`_ ``composer require symfony/mailjet-mailer`` yes
`Mailomat`_ ``composer require symfony/mailomat-mailer`` yes
`MailPace`_ ``composer require symfony/mail-pace-mailer``
`MailerSend`_ ``composer require symfony/mailer-send-mailer``
`Mandrill`_ ``composer require symfony/mailchimp-mailer``
Expand All @@ -119,6 +120,10 @@ Service Install with Webhook su

The Azure and Resend integrations were introduced in Symfony 7.1.

.. versionadded:: 7.2

The Mailomat integration was introduced in Symfony 7.2.

.. note::

As a convenience, Symfony also provides support for Gmail (``composer
Expand Down Expand Up @@ -201,6 +206,10 @@ party provider:
| | - HTTP n/a |
| | - API ``mailjet+api://ACCESS_KEY:SECRET_KEY@default`` |
+------------------------+---------------------------------------------------------+
| `Mailomat`_ | - SMTP ``mailomat+smtp://USERNAME:PASSWORD@default`` |
| | - HTTP n/a |
| | - API ``mailomat+api://KEY@default`` |
+------------------------+---------------------------------------------------------+
| `MailPace`_ | - SMTP ``mailpace+api://API_TOKEN@default`` |
| | - HTTP n/a |
| | - API ``mailpace+api://API_TOKEN@default`` |
Expand Down Expand Up @@ -1979,6 +1988,7 @@ the :class:`Symfony\\Bundle\\FrameworkBundle\\Test\\MailerAssertionsTrait`::
.. _`Mailgun`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Mailgun/README.md
.. _`Mailjet`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Mailjet/README.md
.. _`Markdown syntax`: https://commonmark.org/
.. _`Mailomat`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/Mailomat/README.md
.. _`MailPace`: https://github.com/symfony/symfony/blob/{version}/src/Symfony/Component/Mailer/Bridge/MailPace/README.md
.. _`OpenSSL PHP extension`: https://www.php.net/manual/en/book.openssl.php
.. _`PEM encoded`: https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail
Expand Down
5 changes: 5 additions & 0 deletions webhook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Brevo ``mailer.webhook.request_parser.brevo``
MailerSend ``mailer.webhook.request_parser.mailersend``
Mailgun ``mailer.webhook.request_parser.mailgun``
Mailjet ``mailer.webhook.request_parser.mailjet``
Mailomat ``mailer.webhook.request_parser.mailomat``
Postmark ``mailer.webhook.request_parser.postmark``
Resend ``mailer.webhook.request_parser.resend``
Sendgrid ``mailer.webhook.request_parser.sendgrid``
Expand All @@ -36,6 +37,10 @@ Sendgrid ``mailer.webhook.request_parser.sendgrid``

The support for ``Resend`` and ``MailerSend`` were introduced in Symfony 7.1.

.. versionadded:: 7.2

The ``Mailomat`` integration was introduced in Symfony 7.2.

.. note::

Install the third-party mailer provider you want to use as described in the
Expand Down

0 comments on commit 15dcd7e

Please sign in to comment.