Fix header charset decoding when opening a draft message
| | |
| | | $fvalue = $MESSAGE->get_header('reply-to'); |
| | | else if ($header=='followupto' && !empty($MESSAGE->headers->others['mail-followup-to'])) |
| | | $fvalue = $MESSAGE->get_header('mail-followup-to'); |
| | | |
| | | $decode_header = false; // $MESSAGE->get_header() returns already decoded header values |
| | | } |
| | | |
| | | // split recipients and put them back together in a unique way |
| | |
| | | $message_id = rcmail_gen_message_id(); |
| | | |
| | | // set default charset |
| | | $input_charset = $OUTPUT->get_charset(); |
| | | $message_charset = isset($_POST['_charset']) ? $_POST['_charset'] : $input_charset; |
| | | $message_charset = isset($_POST['_charset']) ? $_POST['_charset'] : $OUTPUT->get_charset(); |
| | | |
| | | $EMAIL_FORMAT_ERROR = NULL; |
| | | $RECIPIENT_COUNT = 0; |