yiisoft / yii2-swiftmailer

Yii 2 swiftmailer extension.
http://www.yiiframework.com
BSD 3-Clause "New" or "Revised" License
116 stars 74 forks source link

compose() with smarty render #78

Closed andrtechno closed 5 years ago

andrtechno commented 5 years ago

config.php

        'view' => [
            ..
            'renderers' => [
                'tpl' => [
                    'class' => 'yii\smarty\ViewRenderer',
                ],
            ],
        ],

не работает smarty при таком раскладе ->compose('mail.tpl', []) не знаю, не доработка это или так и задумано?!

А вот так работает ->compose()->setHtmlBody($this->renderPartial('mail.tpl', []))

andrtechno commented 5 years ago

Сори не доглядел что можно в конфиге для mailer прописать свои настройки view прописать, можно закрывать тикет.

        'mailer' => [
           ..
            'view'=>[
                'renderers' => [
                    'tpl' => [
                        'class' => 'yii\smarty\ViewRenderer',
                    ],
                ],
            ]
        ],
machour commented 5 years ago

Should be documented here: https://github.com/yiisoft/yii2-smarty/blob/master/docs/guide/installation.md

samdark commented 5 years ago

It's already there.