diff options
author | rub <rub@piwigo.org> | 2009-09-28 20:54:06 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2009-09-28 20:54:06 +0000 |
commit | c3a950d1eaf13e878903d65c4876298113290746 (patch) | |
tree | 9c3b548f54a85a085465c232bfd20d855ef592f7 /include/config_default.inc.php | |
parent | d67b2765190159eb2ff59a0b891d4704ca8b23e6 (diff) |
merge -c3937 from branch 2.0 to trunk
Bug 1176: Mail are not sent on Free sites
Add text/plain like alternative content-type
git-svn-id: http://piwigo.org/svn/trunk@3938 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 23e1c8b85..a9ef63607 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -287,6 +287,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'] = ''; |