send html mail using codeigniter

前端 未结 12 984
太阳男子
太阳男子 2020-12-10 11:02

Error in mail content using SMTP in codeigniter Actually, my mail is sent with HTML tags and it is showing the HTML tags which is not correct.

12条回答
  •  清歌不尽
    2020-12-10 11:48

    Try to manually set the content type header doing this:

    $this->email->set_header('Content-Type', 'text/html');
    

    That solve the issue for me.

提交回复
热议问题