PHP code example of cyber-duck / laravel-alternative-mailer

1. Go to this page and download the library: Download cyber-duck/laravel-alternative-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/ */

    

cyber-duck / laravel-alternative-mailer example snippets


'providers' => array(
    ...
    'Cyberduck\Mail\MailServiceProvider'
)

'aliases' => array(
    'Mail2' => 'Cyberduck\Mail\Facades\Mail',
)

\Mail2::send('emails.reminder', ['user' => $user], function ($m) use ($user) {
    $m->from('[email protected]', 'Your Application');
    $m->to($user->email, $user->name);
    $m->subject('Your Reminder!');
});

php artisan vendor:publish --provider="Cyberduck\Mail\MailServiceProvider"