Changeset 1818 for trunk/admin
- Timestamp:
- Feb 14, 2007, 11:53:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/notification_by_mail.php
r1809 r1818 227 227 $is_action_send = ($action == 'send'); 228 228 229 if (!isset($customize_mail_content))230 {231 $customize_mail_content = $conf['nbm_complementary_mail_content'];232 }233 234 229 // disabled and null mail_address are not selected in the list 235 230 $data_users = get_user_notifications('send', $check_key_list); … … 244 239 { 245 240 $datas = array(); 241 242 if (!isset($customize_mail_content)) 243 { 244 $customize_mail_content = $conf['nbm_complementary_mail_content']; 245 } 246 247 if ($conf['nbm_send_html_mail'] and !(strpos($customize_mail_content, '<') === 0)) 248 { 249 // On HTML mail, detects if the content are HTML format. 250 // If it's plain text format, convert content to readable HTML 251 $customize_mail_content = nl2br(htmlentities($customize_mail_content)); 252 } 246 253 247 254 // Prepare message after change language
Note: See TracChangeset
for help on using the changeset viewer.