| 1 | <?php |
||
| 23 | class MailMessageFormat extends AbstractFormat |
||
| 24 | { |
||
| 25 | use EmailTrait; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string the subject |
||
| 29 | */ |
||
| 30 | public $subject; |
||
| 31 | /** |
||
| 32 | * @var string the body of the mail message |
||
| 33 | */ |
||
| 34 | public $body; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritdoc |
||
| 38 | */ |
||
| 39 | public function getText(): string |
||
| 43 | } |
||
| 44 |