send html mail using codeigniter

前端 未结 12 987
太阳男子
太阳男子 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:45

    add this code lines:

    $this->email->set_mailtype("html");
    $this->email->set_newline("\r\n");
    $this->email->set_crlf("\r\n");
    

提交回复
热议问题