opensupports/server/data/InitialMails.php

18 lines
554 B
PHP
Raw Normal View History

<?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')
]
]
];
}
}