diff --git a/admin_manual/configuration_server/config_sample_php_parameters.rst b/admin_manual/configuration_server/config_sample_php_parameters.rst index 963f9e44d..e7a0f2514 100644 --- a/admin_manual/configuration_server/config_sample_php_parameters.rst +++ b/admin_manual/configuration_server/config_sample_php_parameters.rst @@ -482,6 +482,22 @@ the SMTP server. Default to ``''`` (empty string) +:: + + 'mail_template_class' => '\OC\Mail\EMailTemplate', + +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_send_plaintext_only' => false, + +Email will be send by default with an HTML and a plain text body. This option +allows to only send plain text emails. + Proxy Configurations -------------------- @@ -1140,15 +1156,6 @@ filesystem instead of the database to keep the tags. Defaults to ``\OC\SystemTag\ManagerFactory`` -:: - - 'mail_template_class' => '\OC\Mail\EMailTemplate', - -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`` - Maintenance -----------