PHP code example of tahsingokalp / laravel-ews-driver

1. Go to this page and download the library: Download tahsingokalp/laravel-ews-driver library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tahsingokalp / laravel-ews-driver example snippets


'providers' => [
    TahsinGokalp\LaravelEwsDriver\EwsServiceProvider::class
];


return [
    'mailers' => [
        .
        .
        .
        'exchange' => [
            'transport' => 'exchange',
            'host' => env('MAIL_HOST'),
            'username' => env('MAIL_USERNAME'),
            'password' => env('MAIL_PASSWORD'),
            'version' => env('MAIL_VERSION'),
            'messageDispositionType' => env('MAIL_MESSAGE_DISPOSITION_TYPE'),
        ],
        .
        .
        .
    ],