Created
June 11, 2014 20:56
-
-
Save mishak87/81def05bda47e40cba07 to your computer and use it in GitHub Desktop.
Layouts using rixxi/mail-message-factory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{layout email.layout.latte} | |
{block subject}xyz{/block} | |
{block content} | |
Some html... | |
{/block} | |
{* missing another block *} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{subject}{ifset #subject}{else}Default title{/ifset}{/subject} | |
{ifset #text}{body}{include #text}{/body}{/ifset} | |
{body html} | |
<!-- some layout --> | |
{include #content} | |
{ifset #another}{include #another}{/ifset} | |
<!-- /some layout --> | |
{/body} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment