$message = $this->load->view("email_template","",true);
$this->load->library('email');
$this->email->from('noreply@trialwelcome.com');
$this->email->to($capture_data->email);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
当email_template
视图发送<a href="http://google.com">CLICK</a>
但在发送<a href="http://cupohotelero.com">CLICK</a>
时无效时,此代码正常运行。它适用于除此之外的每个URL