Po dziwnym problemie z klasą wiadomości e-mail w haśle codeigniter. Kiedy wysyłam e-mail bezpośrednio na mój adres e-mail konta gmail, to działa dobrze. Jednak jeśli wyślę e-mail na inny adres e-mail i użyje protokołu POP3 do zaimportowania tego adresu e-mail do Gmaila, to z jakiegoś powodu wszystkie nagłówki są zawarte w wiadomości.Problem z wysyłaniem wiadomości e-mail z podpisem Code - nagłówki wysyłane w treści wiadomości
Oto kod do wysyłania e-mail:
$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);
Oto, co pojawia się w mojej skrzynce e-mail wysyłany jest do rachunku, który jest importowany do gmail poprzez POP3:
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--
spróbuj zmienić typ wiadomości z html na tekst. –