Package Data | |
---|---|
Maintainer Username: | sinevia |
Package Create Date: | 2018-08-11 |
Package Last Update: | 2022-08-29 |
Language: | PHP |
License: | proprietary |
Last Refreshed: | 2024-11-15 15:13:54 |
Package Statistics | |
---|---|
Total Downloads: | 89 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Laravel package for sending mail via the Sinevia Web Serices API
Install the package via composer
composer require sinevia/laravel-mail
After publishing, add and fill the next values to your .env file
MAIL_DRIVER=sinevia_mail
Add and fill the next values to your config/services file
'sinevia_mail' => [
'domain' => 'http://ws.sinevia.com/mails/mail-send',
'secret' => 'APIKEY',
],
\Mail::raw('EMAILS WORKING TEXT', function ($message) {
$message->from('mail@server.com','From Name');
$message->to('to@server.com','To Name');
$message->cc('cc@server.com','Cc Name');
$message->bcc('bcc@server.com','Bcc Name');
$message->subject("EMAILS WORKING SUBJECT");
});
// check for failures
if (\Mail::failures()) {
dd('FAILED');
}
dd('SUCCESS');