segpacto / yii2-ews
Extension conversion of 'EWS' to yii2 extension
Installs: 13 039
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 2
Open Issues: 1
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-10-26 19:21:40 UTC
README
The PHP Exchange Web Services library (php-ews) is intended to make communication with Microsoft Exchange servers using Exchange Web Services easier. It handles the NTLM authentication required to use the SOAP services and provides an object-oriented interface to the complex types required to form a request.
Dependencies
- PHP 5.2+
- cURL with NTLM support (7.23.0+ recommended)
- Exchange 2007 or 2010*
*Note: Not all operations or request elements are supported on Exchange 2007.
Installation
Clone the project from git into the desired location.
git clone https://github.com/segpacto/yii2-exchange.git
Usage
The library can be used to make several different request types. In order to make a request, you need to instantiate a new Ews
object:
$ews = new Ews($server, $username, $password, $version);
Could be installed using composer :
composer require "segpacto/yii2-ews:dev-master"
The ExchangeWebServices
class takes four parameters for its constructor:
$server
: The url to the exchange server you wish to connect to, without the protocol. Example: mail.example.com. If you have trouble determing the correct url, you could try using theEWSAutodiscover
class.$username
: The user to connect to the server with. This is usually the local portion of the users email address. Example: "user" if the email address is "user@example.com".$password
: The user's plain-text password.$version
(optional): The version of the Exchange sever to connect to. Valid values can be found atExchangeWebServices::VERSION_*
. Defaults to Exchange 2007.
Once you have your ExchangeWebServices
object, you need to build your request object. The type of object depends on the operation you are calling. If you are using an IDE with code completion it should be able to help you determine the correct classes to use using the provided docblocks.
The request objects are build similar to the XML body of the request. See the resources section below for more information on building the requests.
Available Functions
For synchronization connecting to an stream channel
- synchronize(state_key) Get all the Emails of the current account
- getEmails() Get Contact List of the current account, estructure [contact_id, contact_email]
- getContactList() Get Calendar Events, in case not passed will take -15, +15 from now. Result Array defined on the function createEventArrayFromResponse()
- getCalendarEvents(start_date, end_date)
Resources
- PHP Exchange Web Services Wiki
- Exchange 2007 Web Services Reference
- Exchange 2010 Web Services Reference
Support
All questions should use the issue queue. This allows the community to contribute to and benefit from questions or issues you may have. Any support requests sent to my email address will be directed here.
Contributions
Contributions are always welcome!
Contributing Code
If you would like to contribute code please fork the repository on github and issue a pull request against the master branch. It is recommended that you make any changes to your fork in a separate branch that you would then use for the pull request. If you would like to receive credit for your contribution outside of git, please add your name and email address (optional) to the CONTRIBUTORS.txt file. All contributions should follow the PSR-1 and PSR-2 coding standards.
Contributing Documentation
If you would like to contribute to the documentation, please feel free to update the wiki. I request that you do not make changes to the home page but other pages (including new ones) are fair game. Please leave a descriptive log message for any changes that you make.
Other Contributions
Have you found this library helpful? Why not take a minute to endorse my hard work on coderwall! Just click the badge below: