This extension provides an interface to work with Exchange Web Services. It's based on php-ews.
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require --prefer-dist simialbi/yii2-ews
or add
"simialbi/yii2-ews": "^1.0.0"
to the require
section of your composer.json
.
To use this extension, configure ews component in your application config:
'components' => [
'ews' => [
'class' => 'simialbi\yii2\ews\Connection',
'server' => 'my-exchange.server.com',
'username' => 'administrator',
'password' => 'superSafePassword',
// 'enableLogging' => true
//TODO extend
],
],
Parameter | Description |
---|
TODO
yii2-ews is released under MIT license. See bundled LICENSE for details.