| | |
| | | if (!empty($mailbcc)) { |
| | | $headers['Bcc'] = $mailbcc; |
| | | } |
| | | if (!empty($identity_arr['bcc']) && stripos($headers['Bcc'], $identity_arr['bcc']) === false) { |
| | | $headers['Bcc'] = ($headers['Bcc'] ? $headers['Bcc'].', ' : '') . $identity_arr['bcc']; |
| | | $RECIPIENT_COUNT ++; |
| | | } |
| | | |
| | | if (($max_recipients = (int) $RCMAIL->config->get('max_recipients')) > 0) { |
| | | if ($RECIPIENT_COUNT > $max_recipients) { |
| | |
| | | } |
| | | if (!empty($_POST['_replyto'])) { |
| | | $headers['Reply-To'] = rcmail_email_input_format(get_input_value('_replyto', RCUBE_INPUT_POST, TRUE, $message_charset)); |
| | | } |
| | | else if (!empty($identity_arr['reply-to'])) { |
| | | $headers['Reply-To'] = rcmail_email_input_format($identity_arr['reply-to'], false, true); |
| | | } |
| | | if (!empty($headers['Reply-To'])) { |
| | | $headers['Mail-Reply-To'] = $headers['Reply-To']; |
| | |
| | | $message_body = get_input_value('_message', RCUBE_INPUT_POST, TRUE, $message_charset); |
| | | |
| | | if ($isHtml) { |
| | | $font = rcube_fontdefs($RCMAIL->config->get('default_font', 'Verdana')); |
| | | $font = rcube_fontdefs($RCMAIL->config->get('default_font')); |
| | | $bstyle = $font && is_string($font) ? " style='font-family: $font'" : ''; |
| | | |
| | | // append doctype and html/body wrappers |