邮件
```php
$email = \Guanguans\Notify\Messages\EmailMessage::create()
->from('from@qq.com')
->to('to@qq.com')
//->cc('cc@example.com')
//->bcc('bcc@example.com')
//->replyTo('replyTo@example.com')
// ->priority(\Guanguans\Notify\Messages\EmailMessage::PRIORITY_HIGH)
->subject('This is a testing for notify.')
// ->html('Sending emails is fun again!
')
->text('This is a testing.');
Factory::mailer()
->setDsn('smtp://user:pass@smtp.qq.com:465?verify_peer=0')
->setMessage($email)
->send();
```