send html mail using codeigniter

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

    To send HTML email you first have to compose your message in a variable and then pass that variable to codeigniter's "$this->email->message()" method, like below,

     $this->load->library('email');
    
     $message = "
         
           
             your title
           
           
             

    Hello Sir,

    Your message

    "; $this->email->from('email id', 'name'); $this->email->to('email id'); $this->email->subject('email subject'); $this->email->message($message); if ($this->email->send()) { print "success"; } else { print "Could not send email, please try again later"; }

    hope it will help.

    enjoy!!

提交回复
热议问题