Package Data | |
---|---|
Maintainer Username: | murat |
Maintainer Contact: | muratbsts@gmail.com (Murat Bastas) |
Package Create Date: | 2017-08-09 |
Package Last Update: | 2017-08-12 |
Home Page: | https://packagist.org/packages/muratbsts/mail-template |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:05:08 |
Package Statistics | |
---|---|
Total Downloads: | 1,210 |
Monthly Downloads: | 8 |
Daily Downloads: | 0 |
Total Stars: | 19 |
Total Watchers: | 0 |
Total Forks: | 1 |
Total Open Issues: | 4 |
This package is a easy to use mail template collection for Laravel 5.x.
There is only 3 templates available currently. But more templates is coming fastly. I'm developing beautiful and responsive email templates inspired by Really Good Emails Collection.
Add the package is to composer.json
file:
composer require muratbsts/mail-template dev-master
Add the service provider to config/app.php
file:
<?php
...
'providers' => [
...
Muratbsts\MailTemplate\Providers\MailTemplateServiceProvider::class,
...
],
...
Create a config file like config/mailtemplate.php
<?php
return [
'template' => 'default',
'footnote' => null,
'logo' => [
'path' => null,
'link' => null,
],
'from' => 'sender@email.com',
'cc' => null,
'bcc' => null,
];
Use package as like below in your method
<?php
use Muratbsts\MailTemplate\MailTemplate as MailTemplate;
class XyzController extends Controller
{
public function send()
{
$mailer = app()->make(MailTemplate::class);
$mailer->send('emails.welcome', [
'button' => [
'text' => 'Sign up now!',
'link' => 'https://google.com',
]
], function ($message) use ($user) {
$message->to($user->email, $user->name)->subject('Welcome!');
});
}
}
Extend your welcome email template from mailtemplate::emails.{$template}
as like below
@extends('mailtemplate::emails.{$template}')
@section('content')
<p class="paragraph">Hi,</p>
<p class="paragraph">Cultivar arabica, that, milk robust aroma redeye skinny arabica. Qui skinny, americano barista roast crema single shot filter. To go decaffeinated to go, mug iced sit plunger pot con panna decaffeinated barista sugar café au lait. Cup mazagran milk grinder, coffee steamed fair trade and whipped con panna aromatic.</p>
<p class="paragraph">Take care,</p>
<p class="paragraph">Murat</p>
@endsection
🎉 Cheers! That's it.
More details at the wiki page.