diff options
author | rub <rub@piwigo.org> | 2009-09-28 20:47:55 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2009-09-28 20:47:55 +0000 |
commit | e4146c27da6a63f1c19950e3694eebf3fdf80ddc (patch) | |
tree | 0b45f2183c7e1c1414d3e150dc95466370fc73b6 /include/config_default.inc.php | |
parent | 1215ac07d1d662e3fbabe4b7d7cb467248227aa8 (diff) |
Bug 1176: Mail are not sent on Free sites
Add text/plain like alternative content-type
git-svn-id: http://piwigo.org/svn/branches/2.0@3937 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 27648fd0f..8d5c295ce 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -284,6 +284,11 @@ $conf['send_bcc_mail_webmaster'] = false; // Value could be text/plain or text/html $conf['default_email_format'] = 'text/html'; +// alternative_email_format: +// Define the alternative email format use to send email +// Value could be text/plain or text/html +$conf['alternative_email_format'] = 'text/plain'; + // define the name of sender mail: // If value is empty, gallery title is used $conf['mail_sender_name'] = ''; |