mirror of
https://github.com/appwrite/appwrite
synced 2026-05-20 23:48:23 +00:00
Follow existing style of code
This commit is contained in:
parent
0206e4ee0c
commit
d4626b2039
1 changed files with 2 additions and 5 deletions
|
|
@ -60,14 +60,11 @@ class Mails extends Action
|
|||
$recipient = $payload['recipient'];
|
||||
$subject = $payload['subject'];
|
||||
$variables = $payload['variables'];
|
||||
$variables['protocol'] = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') == 'disabled' ? 'http' : 'https';
|
||||
$variables['hostname'] = App::getEnv('_APP_DOMAIN');
|
||||
$name = $payload['name'];
|
||||
$body = $payload['body'];
|
||||
|
||||
$protocol = App::getEnv('_APP_OPTIONS_FORCE_HTTPS') == 'disabled' ? 'http' : 'https';
|
||||
$hostname = App::getEnv('_APP_DOMAIN');
|
||||
|
||||
$body = str_replace(['{{protocol}}', '{{hostname}}'], [$protocol, $hostname], $body);
|
||||
|
||||
$bodyTemplate = Template::fromFile(__DIR__ . '/../../../../app/config/locale/templates/email-base.tpl');
|
||||
$bodyTemplate->setParam('{{body}}', $body);
|
||||
foreach ($variables as $key => $value) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue