18 lines
554 B
PHP
18 lines
554 B
PHP
|
<?php
|
||
|
|
||
|
class InitialMails {
|
||
|
public static function retrieve() {
|
||
|
return [
|
||
|
'USER_SIGNUP' => [
|
||
|
'en' => [
|
||
|
'subject' => 'Signup {{to}} - OpenSupports',
|
||
|
'body' => file_get_contents('data/mail-templates/user-signup-en.html')
|
||
|
],
|
||
|
'es' => [
|
||
|
'subject' => 'Registrado {{to}} - OpenSupports',
|
||
|
'body' => file_get_contents('data/mail-templates/user-signup-es.html')
|
||
|
]
|
||
|
]
|
||
|
];
|
||
|
}
|
||
|
}
|