We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26578d commit 282d662Copy full SHA for 282d662
components/mailer.rst
@@ -142,6 +142,17 @@ The mailer will start using the first transport and if it fails, it will retry
142
the same delivery with the next transports until one of them succeeds (or until
143
all of them fail).
144
145
+Disable TLS peer verification
146
+-----------------------------
147
+
148
+Symfony's mailer supports TLS peer verification by default, but in some cases,
149
+this verification shouldn't be done, like if the SMTP server has a self signed
150
+certificate.
151
152
+In such case, a parameter can be used in the DSN::
153
154
+ $dsn = 'smtp://user:pass@smtp.example.com?verify_peer=false'
155
156
Sending emails asynchronously
157
-----------------------------
158
0 commit comments