使用zend mail php包连接到Gmail并收到错误
我的方法看起来像
//Get all mail
public function GetMail() {
$mail = new Imap([
'host' => 'imap.gmail.com',
'ssl' => 'tls',
'port' => '993',
'user' => 'example@gmail.com',
'password' => '*********',
]);
echo $mail->countMessages() . " messages found\n";
foreach ($mail as $message) {
printf("Mail from '%s': %s\n", $message->from, $message->subject);
}
}
错误如下: 无法读取 - 连接关闭?
使用Laravel作为框架