php-ews
php-ews copied to clipboard
PHP Exchange Web Services
How to forward an Email
I upgrade to current version v0.10.2. Now I got this follow Error: PHP Fatal error: Uncaught SoapFault: SOAP-ERROR: Encoding: object has no 'Periods' property in C:\Users\fglueck\git\cockpit\inc\vendor\garethp\php-ews\src\API\NTLMSoapClient.php:120 Stack trace: #0 C:\Users\fglueck\git\cockpit\inc\vendor\garethp\php-ews\src\API\NTLMSoapClient.php(120):...
Fixes #271 This code (as well as special handling of `Entry` property) should probably be moved somewhere else.
I upgraded to v0.11 and got a lot of problems that I solved on my end. However, this one might be a bug. I'm using a playback file with this...
This is a meta task to track information, progress, opportunities and concerns. The Cypht Webmail project is adding support for Exchange Web Services (EWS) via Garethp/php-ews. Cypht is a standalone...
When I modify the `getCalendarItems()` options to return anything different than 100 a get an error: ``` call_user_func(): Argument #1 ($callback) must be a valid callback, class DateTime does not...
Turns out that after the WSDL update was contributed last year I forgot to regenerate the API to match it. This PR solves that, adding all the new types with...
Hello! There is the following code: ``` use garethp\ews\API; use garethp\ews\API\Enumeration\CalendarItemCreateOrDeleteOperationType; $api = API::withUsernameAndPassword( 'root_server', 'root_login', 'root_pass' ); $calendar = $api->setPrimarySmtpEmailAddress('[email protected]')->getCalendar(); $createdItemIds = $calendar->createCalendarItems( [ 'Subject' => 'Test', 'Start' =>...