使用codeigniter发送电子邮件不接受网址

时间:2016-11-16 01:13:50

标签: php codeigniter

$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

0 个答案:

没有答案