| 1 | <?php |
||
| 16 | class EmailTarget extends \yii\log\Target |
||
| 17 | { |
||
| 18 | public $view; |
||
| 19 | |||
| 20 | public $from; |
||
| 21 | public $to; |
||
| 22 | public $subject; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var MailerInterface |
||
| 26 | */ |
||
| 27 | private $mailer; |
||
| 28 | |||
| 29 | public function __construct(MailerInterface $mailer, $options = []) |
||
| 34 | |||
| 35 | public function export() |
||
| 48 | } |
||
| 49 |