3
請幫我解決在Mac OS上的問題,當我在我的窗口上鍵入時,它的工作原理 我嘗試在我的Mac上,它顯示」could not開放式插座」。 每個人都可以幫助我。如何解決「無法在Zend Mail中打開套接字(Zend Framework 2)
public function indexAction(){
$mail = new Mail\Message;
$mail->setFrom('[email protected]','Flyoverfly Training');
$mail->addTo('[email protected]','maithanh');
$mail->setSubject('Xác nhận việc phục hồi mật khẩu');
$mail->setBody('maithanh');
$transport = new SmtpTransport;
$option = new SmtpOptions(array(
'name' => 'smtp.gmail.com',
'host' => 'smtp.gmail.com',
'port' => 465,
'connection_class' => 'login',
'connection_config' => array(
'username' => '[email protected]',
'password' => 'mypass',
'ssl' => 'ssl'
)
));
$transport->setOptions($option);
$transport->send($mail);
return new ViewModel;
}
沒有你解決呢? – 2017-02-15 19:34:18