summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/F2M.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/F2M.php b/src/F2M.php
index 519cff3..52d1eb2 100644
--- a/src/F2M.php
+++ b/src/F2M.php
@@ -72,12 +72,15 @@ function send_to_lists($user, $mode, $data, $post_data) {
# Assemble the message headers
$headers = array(
- 'To' => $to,
- 'From' => $from,
- 'Subject' => $subject,
- 'Date' => $date,
- 'Message-Id' => $messageId,
- 'X-BeenThere' => $forumURL,
+ 'To' => $to,
+ 'From' => $from,
+ 'Subject' => $subject,
+ 'Date' => $date,
+ 'Message-Id' => $messageId,
+ 'X-BeenThere' => $forumURL,
+ 'Content-Type' => 'text/plain; charset=UTF-8; format=flowed',
+ 'MIME-Version' => '1.0',
+ 'Conten-Transfer-Encoding' => '8bit'
);
if ($inReplyTo !== null) {