Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit efd342a

Browse files
committed
Merge branch 'hotfix/234'
Close zendframework#234
2 parents a085118 + 21a4a58 commit efd342a

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

docs/book/transport/intro.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@ $transport->send($message);
3535

3636
### SMTP Transport Usage
3737

38+
> ### Installation requirements
39+
>
40+
> The SMTP transport depends on the zend-servicemanager component, so be sure to
41+
> have it installed before getting started:
42+
>
43+
> ```bash
44+
> $ composer require zendframework/zend-servicemanager
45+
> ```
46+
3847
```php
3948
use Zend\Mail\Message;
4049
use Zend\Mail\Transport\Smtp as SmtpTransport;

docs/book/transport/smtp-authentication.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ $transport->setOptions($options);
8585

8686
### SMTP Transport Usage with CRAM-MD5 AUTH
8787

88+
> ### Installation requirements
89+
>
90+
> The CRAM-MD5 authentication depends on the zend-crypt component, so be sure to
91+
> have it installed before getting started:
92+
>
93+
> ```bash
94+
> $ composer require zendframework/zend-crypt
95+
> ```
96+
8897
```php
8998
use Zend\Mail\Transport\Smtp as SmtpTransport;
9099
use Zend\Mail\Transport\SmtpOptions;

0 commit comments

Comments
 (0)