codeigniterの電子メールクラスに奇妙な問題があります。 Gmailアカウントのメールアドレスに直接メールを送信すると、うまく動作します。しかし、別のメールアドレスにメールを送り、そのメールアドレスをGmailにインポートするためにPOP3を使用すると、何らかの理由ですべてのヘッダーがメッセージに含まれます。ここでCodeigniterで電子メールを送信する際の問題 - メッセージ本体で送信されたヘッダー
は、電子メールを送信するためのコードです:
$this->email->clear();
$config['mailtype'] = "html";
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]', 'Website');
$this->email->to('[email protected]');
$this->email->message($message);
はここでメールがPOP3経由でGmailにインポートされたアカウントに送信されたときに、私の受信トレイに到着したものです:
Date: Fri, 7 Jan 2011 15:07:04 +0000
From: "Website" <[email protected]>
Reply-To: "[email protected]" <[email protected]>
X-Sender: [email protected]
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <[email protected]>
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="B_ALT_4d272c1835c46"
This is a multi-part message in MIME format.
Your email application may not support this format.
--B_ALT_4d272c1835c46
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
this is the email message content
--B_ALT_4d272c1835c46
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
<html>
<body>
<p>this is the email message content
</p>
</body>
</html>
--B_ALT_4d272c1835c46--
mailtypeをhtmlからtextに変更してみます。 –