Comparing
#4 with
#5
Content
[...]
------------------
Use this code for sending emails from your application:
```php
Yii::$app->mailer->compose()
->setFrom('somebody@domain.com')
->setTo('myemail@yourserver.com')[...]
```php
Yii::$app->mailer->compose('@app/mail-templates/email01', [/*Some params for the view */])
->setFrom('from@domain.com')
->setTo('someemail@server.com')[...]
```php
Yii::$app->mailer->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();
```[...]