From f14ec5d6553059f7cb3fceaf12ae490bc70cc2f4 Mon Sep 17 00:00:00 2001 From: Benoit Galati Date: Fri, 29 Apr 2022 08:53:04 +0200 Subject: [PATCH] [Mailer] Add Infobip bridge --- mailer.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mailer.rst b/mailer.rst index 0e476113907..32d04ec5a54 100644 --- a/mailer.rst +++ b/mailer.rst @@ -111,6 +111,7 @@ Postmark ``composer require symfony/postmark-mailer`` SendGrid ``composer require symfony/sendgrid-mailer`` Sendinblue ``composer require symfony/sendinblue-mailer`` MailPace ``composer require symfony/mailpace-mailer`` +Infobip ``composer require symfony/infobip-mailer`` ================== ============================================== .. versionadded:: 6.2 @@ -118,6 +119,10 @@ MailPace ``composer require symfony/mailpace-mailer`` The ``MailPace`` integration was introduced in Symfony 6.2 (in previous Symfony versions it was called ``OhMySMTP``). +.. versionadded:: 6.2 + + The Infobip integration was introduced in Symfony 6.2. + 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: @@ -167,6 +172,7 @@ MailPace mailpace+api://API_TOKEN@default n/a 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 +Infobip infobip+smtp://KEY@default n/a infobip+api://KEY@BASE_URL ==================== ==================================================== =========================================== ======================================== .. caution::