Codeigniter ile e-posta gönderme sorunu - ileti gövdesinde gönderilen Başlıkları

0 Cevap php

CodeIgniter'daki e-posta sınıfı ile garip bir sorun yaşıyorum. Benim gmail hesap e-posta adresine doğrudan e-posta göndermek, iyi çalışıyor. Farklı bir e-posta adresine e-posta göndermek ve gmail içine e-posta adresi almak için POP3 kullanan, ancak daha sonra bazı nedenlerden dolayı tüm başlıkları mesajın dahildir.

İşte e-posta göndermek için kod:

$this->email->clear();
$config['mailtype'] = "html";
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$this->email->from('email@example.com', 'Website');
$this->email->to('accountthatimportstogmail@url.com');
$this->email->message($message);

İşte e-posta POP3 üzerinden gmail ithal edilen bir hesaba gönderilir zaman benim doğuştan geldi ne:

Date: Fri, 7 Jan 2011 15:07:04 +0000

From: "Website" <email@example.com>
Reply-To: "email@example.com" <email@example.com>
X-Sender: email@example.com

X-Mailer: CodeIgniter

X-Priority: 3 (Normal)

Message-ID: <4d272c1835479@example.com>

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--

0 Cevap