How to send emails using SMTP

Comparing #4 with #5

Revision #5 was created by Wade Shuler Wade Shuler on Apr 15, 2019, 2:58:32 AM.

The component is mailer, not mail

Content

[...]
------------------
Use this code for sending emails from your application:


```php
Yii::$app->mail
er->compose()
->setFrom('somebody@domain.com')
->setTo('myemail@yourserver.com')
[...]
```php
Yii::$app->mail
er->compose('@app/mail-templates/email01', [/*Some params for the view */])
->setFrom('from@domain.com')
->setTo('someemail@server.com')
[...]
```php
Yii::$app->mail
er->compose(['html' => '@app/mail-templates/html-email-01', 'text' => '@app/mail-templates/text-email-01'], [/*Some params for the view */])
->setFrom('from@domain.com')
->setTo('someemail@server.com')
->setSubject('Advanced email from Yii2-SwiftMailer')
->send();
```
[...]