Fix wrong mjml option keys
This commit is contained in:
parent
cf7e32d90b
commit
ef1d812937
2 changed files with 3 additions and 3 deletions
|
@ -47,8 +47,8 @@ class Email
|
|||
global $options;
|
||||
|
||||
$renderer = new ApiRenderer(
|
||||
$options->getOption('mjml_api_key'),
|
||||
$options->getOption('mjml_api_secret')
|
||||
$options->getOption('mjml_api_application_id'),
|
||||
$options->getOption('mjml_api_secret_key')
|
||||
);
|
||||
|
||||
$html = $this->mjml;
|
||||
|
|
|
@ -224,7 +224,7 @@ $page->navigation();
|
|||
<p><?= __('Consider using a password manager. It will save all your passwords and allow you to access them with one master password. Never forget a password ever again.') ?></p>
|
||||
<p><?= sprintf('%sBitwarden%s is the most trusted open source password manager.', '<a href="https://bitwarden.com/" target="_blank">', '</a>') ?></p>
|
||||
|
||||
<?php if ($options->getOption('mjml_api_key') && $options->getOption('mjml_api_secret')) { ?>
|
||||
<?php if ($options->getOption('mjml_api_application_id') && $options->getOption('mjml_api_secret_key')) { ?>
|
||||
<p>
|
||||
<form class="ui form reset" method="POST">
|
||||
<div class="field">
|
||||
|
|
Loading…
Reference in a new issue