vis / mail-templates
There is no license information available for the latest version (1.0.59) of this package.
1.0.59
2016-05-04 09:02 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
README
В composer.json добавляем в блок require
"vis/mail-templates": "1.0.*"
Выполняем
composer update
Добавляем в app.php
'Vis\MailTemplates\MailTemplatesServiceProvider',
Выполняем миграцию таблиц
php artisan migrate --package=vis/mail-templates
Публикуем js файлы
php artisan asset:publish vis/mail-templates
В файле app/config/packages/vis/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; } ), array( 'title' => "Настройки", 'link' => '/emails/settings', '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();