Download the PHP package bonoweb/laravel-ews-driver without Composer
On this page you can find all versions of the php package bonoweb/laravel-ews-driver. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bonoweb/laravel-ews-driver
More information about bonoweb/laravel-ews-driver
Files in bonoweb/laravel-ews-driver
Package laravel-ews-driver
Short Description Adds Exchange Web Services Mail Support to Laravel.
License Apache-2.0
Homepage https://github.com/bonoweb/laravel-ews-driver
Informations about the package laravel-ews-driver
Laravel Exchange Web Services Driver
Forked From (https://github.com/adeboyed/laravel-ews-driver)
A Mail Driver with support for Exchange Web Services, using the original Laravel API. This library extends the original Laravel classes, so it uses exactly the same methods. This package requires a access to a EWS host.
This library uses the php-ews library to connect to the exchange web services host. Therefore requires the following dependencies:
- Composer
- PHP 5.4 or greater
- cURL with NTLM support (7.30.0+ recommended)
- Exchange 2007 or later
For more information, visit that repo
Install (Laravel)
Add the package to your composer.json and run composer update.
Add the Exchange service provider in config/app.php: (Laravel 5.5+ uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.)
Install (Lumen)
Add the package to your composer.json and run composer update.
or install with composer
Add the exchange service provider in bootstrap/app.php
Create mail config files. config/mail.php
Configure
.env
config/mail.php (In using lumen, this requires creating config directory and file, see more here)
For more information on the Message Disposition Type, view more here
Attachments
If you have problems sending attachments, try setting in the .env MAIL_CLIENT_VERSION="Exchange2010_SP2"
See Here