| 1 | <?php namespace VojtaSvoboda\Reservations\Mailers; |
||
| 6 | class BaseMailer |
||
| 7 | { |
||
| 8 | /** Default template locale. */ |
||
| 9 | const DEFAULT_TEMPLATE_LOCALE = 'en'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Get template ident by locale. |
||
| 13 | * |
||
| 14 | * @param string $name |
||
| 15 | * |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getTemplateIdent($name) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Init recipients array. |
||
| 33 | * |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | public function initRecipients() |
||
| 44 | } |
||
| 45 |