|
8 | 8 | class MessagePrecacheDto |
9 | 9 | { |
10 | 10 | public string $replyToEmail = ''; |
11 | | - public string $replyToName; |
12 | | - public string $fromName; |
13 | | - public string $fromEmail; |
14 | | - public string $to; |
15 | | - public string $subject; |
16 | | - public string $content; |
| 11 | + public ?string $replyToName = null; |
| 12 | + public ?string $fromName = null; |
| 13 | + public ?string $fromEmail = null; |
| 14 | + public ?string $to = null; |
| 15 | + public ?string $subject = null; |
| 16 | + public ?string $content = null; |
17 | 17 | public string $textContent = ''; |
18 | | - public string $footer; |
19 | | - public string $textFooter; |
| 18 | + public ?string $footer = null; |
| 19 | + public ?string $textFooter = null; |
20 | 20 | public string $htmlFooter = ''; |
21 | | - public bool $htmlFormatted; |
22 | | - public string $sendFormat; |
| 21 | + public bool $htmlFormatted = false; |
| 22 | + public ?string $sendFormat = null; |
23 | 23 | public ?string $template = null; |
24 | 24 | public ?string $templateText = null; |
25 | 25 | public ?int $templateId = null; |
26 | 26 | // public string $htmlCharset= 'UTF-8'; |
27 | 27 | // public string $textCharset= 'UTF-8'; |
28 | | - public bool $userSpecificUrl; |
29 | | - public string $googleTrack; |
| 28 | + public bool $userSpecificUrl = false; |
| 29 | + public ?string $googleTrack = null; |
30 | 30 | public array $adminAttributes = []; |
31 | 31 | } |
0 commit comments