Merge pull request #5796 from nextcloud/backport-allow-to-theme-emails
[stable12] Backport allow to theme emails
This commit is contained in:
commit
cd6afb6957
|
@ -977,6 +977,13 @@ $CONFIG = array(
|
|||
*/
|
||||
'systemtags.managerFactory' => '\OC\SystemTag\ManagerFactory',
|
||||
|
||||
/**
|
||||
* Replaces the default mail template layout. This can be utilized if the
|
||||
* options to modify the mail texts with the theming app is not enough.
|
||||
* The class must extend ``\OC\Mail\EMailTemplate``
|
||||
*/
|
||||
'mail_template_class' => '\OC\Mail\EMailTemplate',
|
||||
|
||||
/**
|
||||
* Maintenance
|
||||
*
|
||||
|
|
|
@ -90,6 +90,16 @@ class Mailer implements IMailer {
|
|||
}
|
||||
|
||||
public function createEMailTemplate() {
|
||||
$class = $this->config->getSystemValue('mail_template_class', '');
|
||||
|
||||
if ($class !== '' && class_exists($class) && is_a($class, EMailTemplate::class, true)) {
|
||||
return new $class(
|
||||
$this->defaults,
|
||||
$this->urlGenerator,
|
||||
$this->l10n
|
||||
);
|
||||
}
|
||||
|
||||
return new EMailTemplate(
|
||||
$this->defaults,
|
||||
$this->urlGenerator,
|
||||
|
|
Loading…
Reference in New Issue