Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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