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 57d1210 commit cd8c1fcCopy full SHA for cd8c1fc
readme.md
@@ -70,12 +70,12 @@ $mailbox = new Mailbox([
70
]);
71
```
72
73
-To connect using plain (without encryption) or starttls, set the `encryption` option to `null`:
+To connect using plain (without encryption) or starttls, set the `encryption` option to `starttls`:
74
75
```php
76
$mailbox = new Mailbox([
77
'port' => 143,
78
- 'encryption' => null,
+ 'encryption' => 'starttls',
79
'username' => '...',
80
'password' => '...',
81
'host' => 'imap.example.com',
0 commit comments