diff --git a/mailer.rst b/mailer.rst index bad5231c7f8..f7fa2736a19 100644 --- a/mailer.rst +++ b/mailer.rst @@ -112,12 +112,17 @@ Mailjet ``composer require symfony/mailjet-mailer`` Postmark ``composer require symfony/postmark-mailer`` SendGrid ``composer require symfony/sendgrid-mailer`` Sendinblue ``composer require symfony/sendinblue-mailer`` +OhMySMTP ``composer require symfony/oh-my-smtp-mailer`` ================== ============================================== .. versionadded:: 5.2 The Sendinblue integration was introduced in Symfony 5.2. +.. versionadded:: 5.4 + + The OhMySMTP integration was introduced in Symfony 5.4. + Each library includes a :ref:`Symfony Flex recipe ` that will add a configuration example to your ``.env`` file. For example, suppose you want to use SendGrid. First, install it: @@ -166,6 +171,8 @@ party provider: Postmark postmark+smtp://ID@default n/a postmark+api://KEY@default Sendgrid sendgrid+smtp://KEY@default n/a sendgrid+api://KEY@default Sendinblue sendinblue+smtp://USERNAME:PASSWORD@default n/a sendinblue+api://KEY@default + OhMySMTP ohmysmtp+smtp://API_TOKEN@default n/a ohmysmtp+api://API_TOKEN@default + ==================== ==================================================== =========================================== ======================================== .. caution:: @@ -1326,6 +1333,10 @@ The following transports currently support tags and metadata: * Postmark * Sendinblue +The following transports only support tags: + +* OhMySMTP + Development & Debugging -----------------------