diff --git a/mailer.rst b/mailer.rst index 68bcaf297bc..eb1a72ec9c1 100644 --- a/mailer.rst +++ b/mailer.rst @@ -236,6 +236,17 @@ OhMySMTP ohmysmtp+smtp://API_TOKEN@default n/a Note that the protocol is *always* HTTPs and cannot be changed. +.. note:: + + The specific transports, e.g. ``mailgun+smtp`` are designed to work without any manual configuration. + Changing the port by appending it to your DSN is not supported for any of these ``+smtp` transports. + If you need to change the port, use the ``smtp`` transport instead, like so: + + .. code-block:: env + + # .env + MAILER_DSN=smtp://KEY:DOMAIN@smtp.eu.mailgun.org.com:25 + High Availability ~~~~~~~~~~~~~~~~~