Email Template Management with Bootstrap & TinyMCE Editor
Can be used managing email templates from backend.
- Require this package with composer.
composer require proshore/email-templates
Laravel 5.5 uses Package Auto-Discovery, so you don't have to manually add the package to the ServiceProvider.
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Proshore\EmailTemplates\EmailTemplatesServiceProvider::class,
- Publish file.
php artisan vendor:publish --tag=config
php artisan vendor:publish --tag=views
php artisan vendor:publish --tag=migrations
php artisan vendor:publish --tag=public
TinyMCE script should be included in your appropriate layout. Multiple slugs can be added to config based on which the template identifiers are displayed in CRUD section, please change the config file located at 'config/proshore-email-templates.php'. Initially, there are some slugs to get you started with.
Sudhir Bastakoti