Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christoph-hautzinger/122eef7bfb496fb762f0 to your computer and use it in GitHub Desktop.
Save christoph-hautzinger/122eef7bfb496fb762f0 to your computer and use it in GitHub Desktop.
email with twig superpowers
<email>
{% for user in users %}
<to name="{{ user.name }}">{{ user.email }}</to>
{% endfor %}
<from name="conspecton">info@conspecton.com</from>
<subject locale="en">Hello in english!</subject>
<subject locale="de">Hallo in deutsch!</subject>
<messageText locale="en">Hello this is a test!</messageText>
<messageText locale="de">Hallo dies ist ein Test!</messageText>
<messageHtml locale="en"><![CDATA[Hello <a href="{{ url('homepage') }}">this</a> is a <strong>HTML-test</strong>!]]></messageHtml>
<messageHtml locale="de"><![CDATA[Hallo <a href="{{ url('homepage') }}">das</a> ist ein <strong>HTML-test</strong>!]]></messageHtml>
</email>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment