From 0b16eb5ea8bbbfffdc373d9df9808ad2afaf376a Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 17 Apr 2018 03:35:48 +0200 Subject: [PATCH] generate documentation from config.sample.php --- .../config_sample_php_parameters.rst | 25 ++++++++++++------- 1 file changed, 16 insertions(+), 9 deletions(-) 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 -----------