0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00
PHPMailer/class.phpmaileroauthmicrosoft.php
Ravishanker Kusuma c71721636e XOAuth Providers support Google,Yahoo,Microsoft
Added token expiry check
2015-09-24 15:22:48 +08:00

37 lines
1.3 KiB
PHP

<?php
/**
* PHPMailer - PHP email creation and transport class.
* PHP Version 5.4
* @package PHPMailer
* @link https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project
* @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk>
* @author Jim Jagielski (jimjag) <jimjag@gmail.com>
* @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
* @author Brent R. Matzelle (original founder)
* @copyright 2012 - 2014 Marcus Bointon
* @copyright 2010 - 2012 Jim Jagielski
* @copyright 2004 - 2009 Andy Prevost
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
* @note This program is distributed in the hope that it will be useful - WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* PHPMailerOAuthProvider - Wrapper for League OAuth2 Microsoft provider.
* @package PHPMailer
* @author @hayageek
* @author Ravishanker Kusuma (hayageek@gmail.com)
* @link https://github.com/hayageek
*/
class PHPMailerOAuthMicrosoft extends PHPMailerOAuthProvider
{
public function getProvider() {
return new Stevenmaguire\OAuth2\Client\Provider\Microsoft([
'clientId' => $this->oauthClientId,
'clientSecret' => $this->oauthClientSecret
]);
}
}