forked from jamesiarmes/php-ews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExchangeWebServices.php
executable file
·1226 lines (1077 loc) · 31.3 KB
/
ExchangeWebServices.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Contains ExchangeWebServices.
*/
/**
* Base class of the Exchange Web Services application.
*
* @package php-ews\Client
*/
class ExchangeWebServices
{
/**
* Microsoft Exchange 2007
*
* @var string
*/
const VERSION_2007 = 'Exchange2007';
/**
* Microsoft Exchange 2007 SP1
*
* @var string
*/
const VERSION_2007_SP1 = 'Exchange2007_SP1';
/**
* Microsoft Exchange 2007 SP2
*
* @var string
*/
const VERSION_2007_SP2 = 'Exchange2007_SP2';
/**
* Microsoft Exchange 2007 SP3
*
* @var string
*/
const VERSION_2007_SP3 = 'Exchange2007_SP3';
/**
* Microsoft Exchange 2010
*
* @var string
*/
const VERSION_2010 = 'Exchange2010';
/**
* Microsoft Exchange 2010 SP1
*
* @var string
*/
const VERSION_2010_SP1 = 'Exchange2010_SP1';
/**
* Microsoft Exchange 2010 SP2
*
* @var string
*/
const VERSION_2010_SP2 = 'Exchange2010_SP2';
/**
* Password to use when connecting to the Exchange server.
*
* @var string
*/
protected $password;
/**
* Location of the Exchange server.
*
* @var string
*/
protected $server;
/**
* SOAP client used to make the request
*
* @var NTLMSoapClient_Exchange
*/
protected $soap;
/**
* Username to use when connecting to the Exchange server.
*
* @var string
*/
protected $username;
/**
* Exchange impersonation
*
* @var EWSType_ExchangeImpersonationType
*/
protected $impersonation;
/**
* Miscrosoft Exchange version that we are going to connect to
*
* @var string
*
* @see ExchangeWebServices::VERSION_2007
* @see ExchangeWebServices::VERSION_2007_SP1
* @see ExchangeWebServices::VERSION_2010
* @see ExchangeWebServices::VERSION_2010_SP1
*/
protected $version;
/**
* Constructor for the ExchangeWebServices class
*
* @param string $server
* @param string $username
* @param string $password
* @param string $version one of the ExchangeWebServices::VERSION_* constants
*/
public function __construct(
$server = null,
$username = null,
$password = null,
$version = self::VERSION_2007
) {
// Set the object properties.
$this->setServer($server);
$this->setUsername($username);
$this->setPassword($password);
$this->setVersion($version);
}
/**
* Returns the SOAP Client that may be used to make calls against the server
*
* @return NTLMSoapClient_Exchange
*/
public function getClient()
{
return $this->initializeSoapClient();
}
/**
* Sets the impersonation property.
*
* @param EWSType_ExchangeImpersonationType $impersonation
*/
public function setImpersonation($impersonation)
{
$this->impersonation = $impersonation;
return true;
}
/**
* Sets the password property.
*
* @param string $password
*/
public function setPassword($password)
{
$this->password = $password;
return true;
}
/**
* Sets the server property.
*
* @param string $server
*/
public function setServer($server)
{
$this->server = $server;
return true;
}
/**
* Sets the user name property.
*
* @param string $username
*/
public function setUsername($username)
{
$this->username = $username;
return true;
}
/**
* Sets the version property.
*
* @param string $version
*/
public function setVersion($version)
{
$this->version = $version;
return true;
}
/**
* Adds one or more delegates to a principal's mailbox and sets specific
* access permissions.
*
* @since Exchange 2007 SP1
*
* @param EWSTYpe_AddDelegateType $request
* @return EWSType_AddDelegateResponseMessageType
*/
public function AddDelegate($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Sets a one-time or follow up action on all the items in a conversation.
*
* This operation allows you to categorize, move, copy, delete, and set the
* read state on all items in a conversation. Actions can also be set for
* new messages in a conversation.
*
* @since Exchange 2010 SP1
*
* @param EWSType_ApplyConversationActionType $request
* @return EWSType_ApplyConversationActionResponseType
*/
public function ApplyConversationAction($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Converts item and folder identifiers between formats that are accepted by
* Microsoft Exchange Server.
*
* @since Exchange 2007 SP1
*
* @param EWSType_ConvertIdType $request
* @return EWSType_ConvertIdResponseType
*/
public function ConvertId($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Copies folders in a mailbox.
*
* @since Exchange 2007
*
* @param EWSType_CopyFolderType $request
* @return EWSType_CopyFolderResponseType
*/
public function CopyFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Copies items and puts the items in a different folder.
*
* @since Exchange 2007
*
* @param EWSType_CopyItemType $request
* @return EWSType_CopyItemResponseType
*/
public function CopyItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Creates either an item or file attachment and attaches it to the
* specified item.
*
* @since Exchange 2007
*
* @param EWSType_CreateAttachmentType $request
* @return EWSType_CreateAttachmentResponseType
*/
public function CreateAttachment($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Creates folders, calendar folders, contacts folders, tasks folders, and
* search folders.
*
* @since Exchange 2007
*
* @param EWSType_CreateFolderType $request
* @return EWSType_CreateFolderResponseType
*/
public function CreateFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Creates items in the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_CreateItemType $request
* @return EWSType_CreateItemResponseType
*/
public function CreateItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Creates a user configuration object on a folder.
*
* @since Exchange 2010
*
* @param EWSType_CreateUserConfigurationType $request
* @return EWSType_CreateUserConfigurationResponseType
*/
public function CreateUserConfiguration($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Creates a managed folder in the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_CreateManagedFolderRequestType $request
* @return EWSType_CreateManagedFolderResponseType
*/
public function CreateManagedFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Deletes file and item attachments from an existing item in the Exchange
* store.
*
* @since Exchange 2007
*
* @param EWSType_DeleteAttachmentType $request
* @return EWSType_DeleteAttachmentResponseType
*/
public function DeleteAttachment($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Deletes folders from a mailbox.
*
* @since Exchange 2007
*
* @param EWSType_DeleteFolderType $request
* @return EWSType_DeleteFolderResponseType
*/
public function DeleteFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Deletes items in the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_DeleteItemType $request
* @return EWSType_DeleteItemResponseType
*/
public function DeleteItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Deletes a user configuration object on a folder.
*
* @since Exchange 2010
*
* @param EWSType_DeleteUserConfigurationType $request
* @return EWSType_DeleteUserConfigurationResponseType
*/
public function DeleteUserConfiguration($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Terminates the telephone call.
*
* @since Exchange 2010
*
* @param EWSType_DisconnectPhoneCallType $request
* @return EWSType_DisconnectPhoneCallResponseMessageType
*/
public function DisconnectPhoneCall($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Empties folders in a mailbox.
*
* Optionally, this operation enables you to delete the subfolders of the
* specified folder. When a subfolder is deleted, the subfolder and the
* messages within the subfolder are deleted.
*
* @since Exchange 2010
*
* @param EWSType_EmptyFolderType $request
* @return EWSType_EmptyFolderResponseType
*/
public function EmptyFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Exposes the full membership of distribution lists.
*
* @since Exchange 2007
*
* @param EWSType_ExpandDLType $request
* @return EWSType_ExpandDLResponseType
*/
public function ExpandDL($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Exports items out of a mailbox.
*
* @since Exchange 2010 SP1
*
* @param EWSType_ExportItemsType $request
* @return EWSType_ExportItemsResponseType
*/
public function ExportItems($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Enumerates a list of conversations in a folder.
*
* @since Exchange 2010 SP1
*
* @param EWSType_FindConversationType $request
* @return EWSType_FindConversationResponseMessageType
*/
public function FindConversation($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Uses Exchange Web Services to find subfolders of an identified folder and
* returns a set of properties that describe the set of subfolders.
*
* @since Exchange 2007
*
* @param EWSType_FindFolderType $request
* @return EWSType_FindFolderResponseType
*/
public function FindFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Identifies items that are located in a specified folder.
*
* @since Exchange 2007
*
* @param EWSType_FindItemType $request
* @return EWSType_FindItemResponseType
*/
public function FindItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Finds messages that meet the specified criteria.
*
* @since Exchange 2010
*
* @param EWSType_FindMessageTrackingReportRequestType $request
* @return EWSType_FindMessageTrackingReportResponseMessageType
*/
public function FindMessageTrackingReport($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Retrieves existing attachments on items in the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_GetAttachmentType $request
* @return EWSType_GetAttachmentResponseType
*/
public function GetAttachment($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Retrieves the delegate settings for a specified mailbox.
*
* @since Exchange 2007 SP1
*
* @param EWSType_GetDelegateType $request
* @return EWSType_GetDelegateResponseMessageType
*/
public function GetDelegate($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Pulls subscription clients to request notifications from the Client
* Access server.
*
* @since Exchange 2007
*
* @param EWSType_GetEventsType $request
* @return EWSType_GetEventsResponseType
*/
public function GetEvents($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets folders from the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_GetFolderType $request
* @return EWSType_GetFolderResponseType
*/
public function GetFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Retrieve Inbox rules in the identified user's mailbox.
*
* @since Exchange 2010 SP1
*
* @param EWSType_GetInboxRulesRequestType $request
* @return EWSType_GetInboxRulesResponseType
*/
public function GetInboxRules($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets items from the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_GetItemType $request
* @return EWSType_GetItemResponseType
*/
public function GetItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets the mail tips information for the specified mailbox.
*
* @since Exchange 2010
*
* @param EWSType_GetMailTipsType $request
* @return EWSType_GetMailTipsResponseMessageType
*/
public function GetMailTips($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets tracking information about the specified messages.
*
* @since Exchange 2010
*
* @param EWSType_GetMessageTrackingReportRequestType $request
* @return EWSType_GetMessageTrackingReportResponseMessageType
*/
public function GetMessageTrackingReport($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Retrieve the timezones supported by the server.
*
* @since Exchange 2010 SP1
*
* @param EWSType_GetPasswordExpirationDateType $request
* @return EWSType_GetPasswordExpirationDateResponseMessageType
*/
public function GetPasswordExpirationDate($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Returns information about the specified telephone call.
*
* @since Exchange 2010
*
* @param EWSType_GetPhoneCallInformationType $request
* @return EWSType_GetPhoneCallInformationResponseMessageType
*/
public function GetPhoneCallInformation($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets the room lists that are available within the Exchange organization.
*
* @since Exchange 2010 SP1
*
* @param EWSType_GetRoomListsType $request
* @return EWSType_GetRoomListsResponseMessageType
*/
public function GetRoomLists($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets the rooms within the specified room list.
*
* @since Exchange 2010 SP1
*
* @param EWSType_GetRoomsType $request
* @return EWSType_GetRoomsResponseMessageType
*/
public function GetRooms($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Returns information from time zone definitions that are available on an
* Exchange server.
*
* @since Exchange 2010
*
* @param EWSType_GetServerTimeZonesType $request
* @return EWSType_GetServerTimeZonesResponseType
*/
public function GetServerTimeZones($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets configuration information for the specified type of service.
*
* @since Exchange 2010
*
* @param EWSType_GetServiceConfigurationType $request
* @return EWSType_GetServiceConfigurationResponseMessageType
*/
public function GetServiceConfiguration($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets the local folder identifier of a specified shared folder.
*
* @since Exchange 2010
*
* @param EWSType_GetSharingFolderType $request
* @return EWSType_GetSharingFolderResponseMessageType
*/
public function GetSharingFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets an opaque authentication token that identifies a sharing invitation.
*
* @since Exchange 2010
*
* @param EWSType_GetSharingMetadataType $request
* @return EWSType_GetSharingMetadataResponseMessageType
*/
public function GetSharingMetadata($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Request subscription notifications from the Client Access server.
*
* @since Exchange 2010 SP1
*
* @param EWSType_GetStreamingEventsType $request
* @return EWSType_GetStreamingEventsResponseType
*/
public function GetStreamingEvents($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Provides detailed information about the availability of a set of users,
* rooms, and resources within a specified time period.
*
* @since Exchange 2007
*
* @param EWSType_GetUserAvailabilityRequestType $request
* @return EWSType_GetUserAvailabilityResponseType
*/
public function GetUserAvailability($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets a user configuration object from a folder.
*
* @since Exchange 2010
*
* @param EWSType_GetUserConfigurationType $request
* @return EWSType_GetUserConfigurationResponseType
*/
public function GetUserConfiguration($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Gets a mailbox user's Out of Office (OOF) settings and messages.
*
* @since Exchange 2007
*
* @param EWSType_GetUserOofSettingsRequest $request
* @return EWSType_GetUserOofSettingsResponse
*/
public function GetUserOofSettings($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Moves folders from a specified folder and puts them in another folder.
*
* @since Exchange 2007
*
* @param EWSType_MoveFolderType $request
* @return EWSType_MoveFolderResponseType
*/
public function MoveFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Moves one or more items to a single destination folder.
*
* @since Exchange 2007
*
* @param EWSType_MoveItemType $request
* @return EWSType_MoveItemResponseType
*/
public function MoveItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Initiates an outbound call and plays a message over the telephone.
*
* @since Exchange 2010
*
* @param EWSType_PlayOnPhoneType $request
* @return EWSType_PlayOnPhoneResponseMessageType
*/
public function PlayOnPhone($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Refreshes the specified local folder with the latest data from the folder
* that is being shared.
*
* @since Exchange 2010
*
* @param EWSType_RefreshSharingFolderType $request
* @return EWSType_RefreshSharingFolderResponseMessageType
*/
public function RefreshSharingFolder($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Removes one or more delegates from a user's mailbox.
*
* @since Exchange 2007 SP1
*
* @param EWSType_RemoveDelegateType $request
* @return EWSType_RemoveDelegateResponseMessageType
*/
public function RemoveDelegate($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Resolves ambiguous email addresses and display names.
*
* @since Exchange 2007
*
* @param EWSType_ResolveNamesType $request
* @return EWSType_ResolveNamesResponseType
*/
public function ResolveNames($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}
/**
* Sends e-mail messages that are located in the Exchange store.
*
* @since Exchange 2007
*
* @param EWSType_SendItemType $request
* @return EWSType_SendItemResponseType
*/
public function SendItem($request)
{
$this->initializeSoapClient();
$response = $this->soap->{__FUNCTION__}($request);
return $this->processResponse($response);
}