我试图用CI 电子邮件课程发送电子邮件, 但页面在发送时会挂挂。 我尝试过使用 MAMP 在 IIS 和 Mac 上都尝试过。 代码和所有地方都复制过的一样, 似乎对其他人都有用!
$config = Array(
protocol => smtp ,
smtp_host => ssl://smtp.googlemail.com ,
smtp_port => 465 ,
smtp_user => xxx ,
smtp_pass => xxx ,
mailtype => html ,
starttls => true
);
$this->load->library( email , config);
$this->email->from( [email protected] , George );
$this->email->to( [email protected] );
$this->email->subject( hey this is an email );
$this->email->message( this is the content of the email );
$this->email->send();
其它服务器设置要尝试吗?