Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 704 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 704 Bytes

Configuration

mails:
	identities:
		default:
			email: [email protected]
			name: Example

		example: Example <[email protected]>

	directories:
		- %appDir%/mails # default

app/mails/registration.latte

{* @event UserFactory::onCreate $user *}
{subject}Welcome to our site {$user}{/subject}
{body text} {* text is default *}
Oh how we are so grateful {$user->name} that you decided to join our awesome service.

Sincerly,
yours CEO
Only Man in the Company
{/body}
{body html}
<marquee>Oh how we are so grateful {$user->name} that you decided to join our awesome service.<marquee>

<p>
	Sincerly,<br />
	yours <strong>CEO</strong><br />
	Only Man in the Company
</p>
{/body}