| 1 | <?php |
||
| 21 | class EmailPart |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $content; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string|null |
||
| 30 | */ |
||
| 31 | private $contentType; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string|null |
||
| 35 | */ |
||
| 36 | private $charset; |
||
| 37 | |||
| 38 | public function __construct(string $content, string $contentType = null, string $charset = null) |
||
| 44 | |||
| 45 | public function getContent(): string |
||
| 49 | |||
| 50 | public function getContentType(): ?string |
||
| 54 | |||
| 55 | public function getCharset(): ?string |
||
| 59 | } |
||
| 60 |