preshetin / mail-sender
There is no license information available for the latest version (1.1) of this package.
Mail block that sends email by template
1.1
2017-07-27 15:34 UTC
Requires
- laraflock/dashboard: ^3.2
- laravel/framework: 5.3.*
Requires (Dev)
- phpunit/phpunit: ^6.2
This package is not auto-updated.
Last update: 2025-03-30 07:41:08 UTC
README
Mail block that sends email by template for Laravel 5.3 / Laraflock Dashboard
Install
- Require in composer:
composer require preshetin/mail-sender:dev-master
- Then register in
config/app.php
providers' => [
...
Preshetin\MailSender\MailSenderServiceProvider::class,
];
- Run migrations to create
mail_logs
&mail_templates
tables:
php artisan migrate
- Add
MailableEntity
interface &MailSenderTrait
trait in any Eloquent model:
use Preshetin\MailSender\MailSenderTrait;
use Preshetin\MailSender\Model\MailableEntity;
class Order extends Model implements MailableEntity
{
use MailSenderTrait;
// ...
}
MailableEntity
interface will require you to add a couple of methods:
This is where email sends TO:
public function getEmail()
{
return $this->user->email;
}
And getMailTemplateReplacements
which gets values for mail template variables:
public function getMailTemplateReplacements()
{
return [
'[ORDER_ID]' => $this->id,
'[NAME]' => $this->user->name,
...
];
}
That's it! Now you may insert Blade templates and get mail send functionality!
Usage
Add in blade templates:
@include('mail-sender::partials.mail', ['mailable_entity' => $order])
Also, you may add to your sidebar:
@include('mail-sender::partials.sidebar')
Configuration
You may php artisan vendor:publish
config mail-sender.php
. There you may ajust a view for emails:
'mail_view' => 'emails.your_custom_view',