| 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 | * @param string $locale |
||
| 16 | * |
||
| 17 | * @return string |
||
| 18 | */ |
||
| 19 | 7 | public function getTemplateIdent($name, $locale = null) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Init recipients array. |
||
| 35 | * |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | 5 | public function initRecipients() |
|
| 46 | } |
||
| 47 |