golden hour
/home/doctorbruno/public_html/taeionline.com/support/include/laminas-mail/src/Protocol/Pop3/Xoauth2
⬆️ Go Up
Upload
File/Folder
Size
Actions
Microsoft.php
947 B
Del
OK
Edit: Microsoft.php
<?php namespace Laminas\Mail\Protocol\Pop3\Xoauth2; use Laminas\Mail\Protocol\Exception\RuntimeException; use Laminas\Mail\Protocol\Pop3; use Laminas\Mail\Protocol\Xoauth2\Xoauth2; /** * @final */ class Microsoft extends Pop3 { protected const AUTH_INITIALIZE_REQUEST = 'AUTH XOAUTH2'; protected const AUTH_RESPONSE_INITIALIZED_OK = '+'; /** * @param string $user the target mailbox to access * @param string $password OAUTH2 accessToken * @param bool $tryApop obsolete parameter not used here */ public function login($user, $password, $tryApop = true): void { $this->sendRequest(self::AUTH_INITIALIZE_REQUEST); $response = $this->readRemoteResponse(); if ($response->status() != self::AUTH_RESPONSE_INITIALIZED_OK) { throw new RuntimeException($response->message()); } $this->request(Xoauth2::encodeXoauth2Sasl($user, $password)); } }
Save