1. Go to this page and download the library: Download hungtrinh/zend-mail-oauth2 library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hungtrinh / zend-mail-oauth2 example snippets
$email = '[email protected]';
$oauth2AccessToken = 'oauth2_access_token of [email protected]';
$imapGmailHost = 'imap.gmail.com';
$imap365Host = 'outlook.office365.com'; //use this host if working with office365
$imapProtocol = new Zend_Mail_Protocol_ImapOauth2($imapGmailHost, $port = '993', $ssl = true);
if (!$imapProtocol->login($email, $oauth2AccessToken)) {
throw new \DomainException('Invalid email or oauth2 access token expired');
}
$index = 0;
$max = 10;
$mail = new Zend_Mail_Storage_Imap($imapProtocol);
echo $mail->countMessages();
foreach($mail as $messageNum => $message) {
echo $message->subject;
if ($max === ++$index) {
break;
}
}
$email = '[email protected]';
$$oauth2AccessToken = 'oauth2_access_token of [email protected]';
$popGmailHost = 'pop.gmail.com';
$pop365Host = 'outlook.office365.com'; //use this host if working with office365
$pop3Protocol = new Zend_Mail_Protocol_Pop3Oauth2($popGmailHost, $port = '995', $ssl = true);
if (!$pop3Protocol->login($email, $oauth2AccessToken)) {
throw new \DomainException('Invalid email or oauth2 access token expired');
}
$index = 0;
$max = 10;
$mail = new Zend_Mail_Storage_Pop3($pop3Protocol);
echo $mail->countMessages();
foreach($mail as $messageNum => $message) {
echo $message->subject;
if ($max === ++$index) {
break;
}
}
$office365Host = 'smtp.office365.com'; //use this host if working with office365
$gmailHost = 'smtp.gmail.com';
$mailSender = '[email protected]';
$oauth2AccessToken = 'access token of [email protected]';
$transport = new Zend_Mail_Transport_Smtp($gmailHost, [
'ssl' => 'tls',
'port' => 587,
'auth' => 'oauth2', // Zend_Mail_Protocol_Smtp_Auth_Oauth2
'email' => $mailSender,
'accessToken' => $oauth2AccessToken,
]);
Zend_Mail::setDefaultTransport($transport);
Zend_Mail::setDefaultFrom($mailSender, 'sender fullname');
Zend_Mail::setDefaultReplyTo($mailSender,'sender fullname');
$mail = new Zend_Mail();
$date = date('Y-m-d H:i:s P');
$mail->addTo($mailTo)
->setSubject("Test xoauh2 - smtp $date")
->setBodyText("$date : smtp + xoauth2 send mail test");
$mail->send();