0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 01:52:15 +02:00

Add Microsoft scope options

This commit is contained in:
Marcus 2016-04-07 11:35:44 +02:00
parent 498204253c
commit dca2a72e19

View File

@ -95,6 +95,12 @@ switch ($providerName) {
break;
case 'Microsoft':
$provider = new Microsoft($params);
$options = [
'scope' => [
'wl.imap',
'wl.offline_access'
]
];
break;
}