vis / mail_templates_l5
Mail templates for L5
Installs: 913
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
This package is not auto-updated.
Last update: 2024-11-09 19:45:45 UTC
README
В composer.json добавляем в блок require
"vis/mail_templates_l5": "1.*"
Выполняем
composer update
Добавляем в app.php в массив providers
Vis\MailTemplates\MailTemplatesServiceProvider::class
Выполняем миграцию таблиц
php artisan migrate --path=vendor/vis/mail_templates_l5/src/Migrations
Публикуем js и конфиги файлы
php artisan vendor:publish --tag=mail-templates --force
В файле config/builder/admin.php в массив menu в настройки добавляем
array( 'title' => 'Почта', 'icon' => 'envelope-o', 'check' => function() { return true; }, 'submenu' => array( array( 'title' => "Шаблоны писем", 'link' => '/emails/letter_template', 'check' => function() { return true; } ), array( 'title' => "Письма", 'link' => '/emails/mailer', 'check' => function() { return true; } ), ) ),
Использование сверху
use Vis\MailTemplates\MailT;
вызов
$mail = new MailT("alias шаблона письма", array( "fio" => "Вася", "phone" => "097 000 00 00" )); $mail->to = "email"; $mail->attach = Input::file('file_name'); //если нужно много файлов переслать, то оформлять как массив : array(Input::file('file_name'), Input::file('file_name')) $mail->send();