2017 © Pedro Peláez
 

library mail_templates_l5

Mail templates for L5

image

vis/mail_templates_l5

Mail templates for L5

  • Friday, April 7, 2017
  • by arturishe
  • Repository
  • 1 Watchers
  • 0 Stars
  • 231 Installations
  • HTML
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 5 % Grown

The README.md

В composer.json добавляем в блок require, (*1)

 "vis/mail_templates_l5": "1.*"

Выполняем, (*2)

composer update

Добавляем в app.php в массив providers, (*3)

  Vis\MailTemplates\MailTemplatesServiceProvider::class

Выполняем миграцию таблиц, (*4)

   php artisan migrate --path=vendor/vis/mail_templates_l5/src/Migrations

Публикуем js и конфиги файлы, (*5)

   php artisan vendor:publish --tag=mail-templates --force

В файле config/builder/admin.php в массив menu в настройки добавляем, (*6)

       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;
                  }
              ),
          )
      ),

Использование сверху, (*7)

    use Vis\MailTemplates\MailT;

вызов, (*8)

    $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();

The Versions

07/04 2017

dev-master

9999999-dev

Mail templates for L5

  Sources   Download

proprietary

by vis

07/04 2017

1.0.8

1.0.8.0

Mail templates for L5

  Sources   Download

proprietary

by vis

05/04 2017

1.0.7

1.0.7.0

Mail templates for L5

  Sources   Download

proprietary

by vis

05/04 2017

1.0.6

1.0.6.0

Mail templates for L5

  Sources   Download

proprietary

by vis

05/09 2016

1.0.5

1.0.5.0

Mail templates for L5

  Sources   Download

by vis

26/07 2016

1.0.4

1.0.4.0

Mail templates for L5

  Sources   Download

by vis

12/05 2016

1.0.3

1.0.3.0

Mail templates for L5

  Sources   Download

by vis

05/05 2016

1.0.2

1.0.2.0

Mail templates for L5

  Sources   Download

by vis

18/04 2016

1.0.1

1.0.1.0

Mail templates for L5

  Sources   Download

by vis