PHP Classes

File: config/too-mailable.php

Recommend this page to a friend!
  Classes of Hashemi Rafsan   Laravel Too Mailable   config/too-mailable.php   Download  
File: config/too-mailable.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: Laravel Too Mailable
Send email using SMTP servers of Cloud providers
Author: By
Last change:
Date: 1 year ago
Size: 530 bytes
 

Contents

Class file image Download
<?php

use Hashemi\TooMailable\Transports\{
   
Amazon, Google, Mailchimp, Mailgun, Mailjet,
   
OhMySmtp, Postmark, Sendgrid, SendInBlue
};

return [
   
'transports' => [
       
'amazon' => Amazon::class,
       
'google' => Google::class,
       
'mailchimp' => Mailchimp::class,
       
'mailgun' => Mailgun::class,
       
'mailjet' => Mailjet::class,
       
'postmark' => Postmark::class,
       
'sendgrid' => Sendgrid::class,
       
'sendinblue' => SendInBlue::class,
       
'oh-my-smtp' => OhMySmtp::class,
    ],
];