shaz3e / email-templates
A demo package
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
README
Email templates are pre-designed email messages that can be customized to fit your needs. They can be used to send automated emails, such as welcome emails, abandoned cart reminders, and order confirmations all emails will written in html and queueable mean there is no need to create additional jobs or mailable everytime for all your email and best thing is you can write your own email from dashboard and use template placeholders like {{ name }}
in your email but you need to register placeholders in the specific email.
Before proceeding the installation steps please read the complete documention to take only the step which is necessary for your application. We suggest only publish config file as this may be necessary to manage prefix, routes and middleware and only publish views when you need to modify it. It built with livewire grid view which poll data only visible mode.
Note This package is built for S3 Dashboard and require extra efforts to use with any laravel application.
Install via composer
composer require shaz3e/email-templates
Migrate database and permissions
php artisan migrate
php artisan storage:link
Create template from dashboard visit http://s3-dashboard.test/manage/email-templates/create
Create Template from Console
php artisan email-templates:create
- Provide Unique Template Key
- Provide Template Name
- Provide Email Subject
Or create all together
php artisan email-templates:create "key" "name" "subject"
replace key, name, subject according to your requirements
To send email use the following function in your application or preview/view the template and use the code at the end of show route
use Shaz3e\EmailTemplates\Services\EmailService; $emailService = new EmailService(); $emailService->sendEmailByKey('{template_key}', $user->email, [ 'name' => $user->name, 'email' => $user->email, ]);
Publisables
Publish config only
php artisan vendor:publish --tag=email-templates-config
Publish views only
php artisan vendor:publish --tag=email-templates-view
Publish migration only
php artisan vendor:publish --tag=email-templates-migration
Publish language files only
php artisan vendor:publish --tag=email-templates-lang
Or Publish everything
php artisan vendor:publish --tag=email-templates-all
Contributing
- If you have any suggestions please let me know : https://github.com/Shaz3e/email-templates/pulls.
- Please help me improve code https://github.com/Shaz3e/email-templates/pulls
License
Email Templates with S3 Dashboard is licensed under the MIT license. Enjoy!