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:
186
+
The following additional parameters can be passed to the constructor:
187
187
188
188
*`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
189
*`timeout` - timeout for SMTP connection
191
190
*`persistent` - use persistent connection
192
191
*`clientHost` - client designation
192
+
*`streamOptions` - allows you to set [SSL context options](https://www.php.net/manual/en/context.ssl.php) for connection
193
193
194
194
195
195
FallbackMailer
@@ -201,12 +201,12 @@ It does not send email but sends them through a set of mailers. If one mailer fa
201
201
$mailer = new Nette\Mail\FallbackMailer([
202
202
$smtpMailer,
203
203
$backupSmtpMailer,
204
-
$sendmailMailer
204
+
$sendmailMailer,
205
205
]);
206
206
$mailer->send($mail);
207
207
```
208
208
209
-
Other parameters in the constructor include the number of repeat and waiting time in miliseconds.
209
+
Other parameters in the constructor include the number of repeat and waiting time in milliseconds.
210
210
211
211
212
212
DKIM
@@ -216,14 +216,14 @@ DKIM (DomainKeys Identified Mail) is a trustworthy email technology that also he
216
216
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