开发者

Best PHP mailing library for Codeigniter-2

开发者 https://www.devze.com 2023-02-16 13:52 出处:网络
Iam using CI-2 default mail class f开发者_高级运维or sending emails. But it is not sending HTML based emails properly.

Iam using CI-2 default mail class f开发者_高级运维or sending emails. But it is not sending HTML based emails properly.

Can someone tell me good email sending libraries for CI2.

Thanks in advance


Try to configure the library to send html emails

$config['mailtype'] = 'html';
$this->email->initialize($config);


gmail and HTML content is a common problem; solutions have been suggested in the official CI forum with references to using Swift Mailer instead.


There is another solution I've found for poor HTML / Email Support.

Open up the Email Class:

System/Libraries/Email.php

Around Line 51 You'll see

var $send_multipart = TRUE;

Set this to FALSE and try again. I find CI's email library to be very good.

0

精彩评论

暂无评论...
验证码 换一张
取 消