PHP code example of gocpa / sendsay-laravel-mailer

1. Go to this page and download the library: Download gocpa/sendsay-laravel-mailer 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/ */

    

gocpa / sendsay-laravel-mailer example snippets


return [
    'apikey' => env('MAIL_SENDSAY_APIKEY'),
    'account' => env('MAIL_SENDSAY_ACCOUNT'),
    'proxy' => env('MAIL_SENDSAY_PROXY'),
    'dkimId' =>  env('MAIL_SENDSAY_DKIM_ID'),
];
bash
php artisan vendor:publish --provider="GoCPA\\SendsayLaravelMailer\\SendsayMailerServiceProvider"