php-ews icon indicating copy to clipboard operation
php-ews copied to clipboard

PHP Exchange Web Services

Results 88 php-ews issues
Sort by recently updated
recently updated
newest added

plus, removed `.idea` dir from the repo

I got an error: "The request is invalid." To find the error I try $this->api->getClient()->__getLastResponse(); $this->api->getClient()->__getLastRequest(); But all of this will trigger a Exception. Returns getClient() not a NTLMSoapClient (extends...

Fatal error: Uncaught garethp\ews\API\Exception\UnauthorizedException in C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices.php:454 Stack trace: #0 C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices.php(372): garethp\ews\API\ExchangeWebServices->handleNonSuccessfulResponses(NULL, 401) #1 C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices\MiddlewareFactory.php(57): garethp\ews\API\ExchangeWebServices->processResponse(NULL) #2 C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices.php(516): garethp\ews\API\ExchangeWebServices->garethp\ews\API\ExchangeWebServices\{closure}(Object(garethp\ews\API\MiddlewareRequest), Object(Closure)) #3 C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices\MiddlewareFactory.php(66): garethp\ews\API\ExchangeWebServices->garethp\ews\API\{closure}(Object(garethp\ews\API\MiddlewareRequest)) #4 C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices.php(516): garethp\ews\API\ExchangeWebServices->garethp\ews\API\ExchangeWebServices\{closure}(Object(garethp\ews\API\MiddlewareRequest), Object(Closure)) #5 C:\xampp\htdocs\exemrms_mssql\test\vendor\garethp\php-ews\src\API\ExchangeWebServices.php(526): garethp\ews\API\ExchangeWebServices->garethp\ews\API\{closure}(Object(garethp\ews\API\MiddlewareRequest)) #6...

I thought, that - according to https://github.com/Garethp/php-ews/blob/master/src/API/Type/ItemType.php - I would get a Datettime object by calling `getDatetime()`, but instead I am getting a string. I am calling the function on...

As part of a script I'm working on, I needed to write a SOAP Server which would respond to [EWS NewMail Notifications](https://msdn.microsoft.com/en-us/library/office/dn458791(v=exchg.150).aspx). Initially I attempted to return the [SendNotificationResponseMessage](https://msdn.microsoft.com/en-us/library/office/aa579711(v=exchg.150).aspx) like...

I'm trying to get all mails from a folder that are a.) unread b.) newer than a special date. Each single restriction works fine in this call: $mailItems = $api->getMailItems(...

I use garethp php-ews to connect EWS using oauth2. I am receiving the access token but when passing it to the mail function (getMailItems,getMailbox,getFolder....etc) following fatal error with "UnauthorizedException" is...

Hi Gareth, our company switched over to outlook365 onlione exchange server. Everything still works fine with your library except loading the email-signature. on the old Email Server, this worked: ```...

Hi there, We want to send a tls client certificate for each request to the EWS server. Is there possiblity to add these certificates in each request directly in the...