| 1 | <?php |
||
| 17 | class TestEmailTemplate extends AbstractTemplate |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Get email template slug |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public static function getSlug(): string |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get email template name |
||
| 31 | * |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public static function getName(): string |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Get email template description |
||
| 41 | * |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public static function getDescription(): string |
||
| 48 | |||
| 49 | /** |
||
| 50 | * List parameters |
||
| 51 | * |
||
| 52 | * @return ParameterInterface[] |
||
| 53 | */ |
||
| 54 | public static function listParameters(): array |
||
| 60 | |||
| 61 | /** |
||
| 62 | * List attachments |
||
| 63 | * |
||
| 64 | * @return array |
||
| 65 | */ |
||
| 66 | public static function listAttachments(): array |
||
| 72 | } |
||
| 73 |