Allow to overwrite the email template again

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/5268/head
Joas Schilling 9 years ago
parent c092b33466
commit 3af8abb098
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
  1. 7
      config/config.sample.php
  2. 10
      lib/private/Mail/Mailer.php

@ -966,6 +966,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…
Cancel
Save