You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do not specify `host`, the value from php.ini will be used. The following additional keys can be used in the options:
194
+
The following additional parameters can be passed to the constructor:
187
195
188
196
*`port` - if not set, the default 25 or 465 for `ssl` will be used
189
-
*`context` - allows you to set [SSL context options](https://www.php.net/manual/en/context.ssl.php) for connection
190
197
*`timeout` - timeout for SMTP connection
191
198
*`persistent` - use persistent connection
192
199
*`clientHost` - client designation
200
+
*`streamOptions` - allows you to set [SSL context options](https://www.php.net/manual/en/context.ssl.php) for connection
193
201
194
202
195
203
FallbackMailer
@@ -201,13 +209,15 @@ It does not send email but sends them through a set of mailers. If one mailer fa
201
209
$mailer = new Nette\Mail\FallbackMailer([
202
210
$smtpMailer,
203
211
$backupSmtpMailer,
204
-
$sendmailMailer
212
+
$sendmailMailer,
205
213
]);
206
214
$mailer->send($mail);
207
215
```
208
216
209
-
Other parameters in the constructor include the number of repeat and waiting time in miliseconds.
217
+
Other parameters in the constructor include the number of repeat and waiting time in milliseconds.
218
+
210
219
220
+
<!---->
211
221
212
222
DKIM
213
223
====
@@ -216,14 +226,14 @@ DKIM (DomainKeys Identified Mail) is a trustworthy email technology that also he
216
226
The recipient's server compares this signature with the public key stored in the domain's DNS records. By matching the signature, it is shown that the email actually originated from the sender's domain and that the message was not modified during the transmission of the message.
0 commit comments