2017 © Pedro Peláez
 

library mail-templates

image

vis/mail-templates

  • Wednesday, May 4, 2016
  • by arturishe
  • Repository
  • 1 Watchers
  • 0 Stars
  • 86 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 15 Versions
  • 0 % Grown

The README.md

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

 "vis/mail-templates": "1.0.*"

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

composer update

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

  'Vis\MailTemplates\MailTemplatesServiceProvider',

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

   php artisan migrate --package=vis/mail-templates

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

   php artisan asset:publish vis/mail-templates

В файле app/config/packages/vis/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;
                  }
              ),
              array(
                  'title' => "Настройки",
                  'link'  => '/emails/settings',
                  '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

04/05 2016

dev-master

9999999-dev

  Sources   Download

The Requires

 

by artur

04/05 2016

1.0.59

1.0.59.0

  Sources   Download

The Requires

 

by artur

05/04 2016

1.0.58

1.0.58.0

  Sources   Download

The Requires

 

by artur

10/02 2016

1.0.57

1.0.57.0

  Sources   Download

The Requires

 

by artur

26/01 2016

1.0.56

1.0.56.0

  Sources   Download

The Requires

 

by artur

28/12 2015

1.0.55

1.0.55.0

  Sources   Download

The Requires

 

by artur

10/12 2015

1.0.53

1.0.53.0

  Sources   Download

The Requires

 

by artur

07/12 2015

1.0.52

1.0.52.0

  Sources   Download

The Requires

 

by artur

04/08 2015

1.0.51

1.0.51.0

  Sources   Download

The Requires

 

by artur

04/08 2015

1.0.5

1.0.5.0

  Sources   Download

The Requires

 

by artur

03/08 2015

1.0.41

1.0.41.0

  Sources   Download

The Requires

 

by artur

03/08 2015

1.0.4

1.0.4.0

  Sources   Download

The Requires

 

by artur

31/07 2015

1.0.3

1.0.3.0

  Sources   Download

The Requires

 

by artur

30/07 2015

1.0.2

1.0.2.0

  Sources   Download

The Requires

 

by artur

25/07 2015

1.0.1

1.0.1.0

  Sources   Download

The Requires

 

by artur