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