Appearance
994 - HTML Templates
Email HTML templates with raw string content. This is an example of a MAML document.
maml
# Email template configuration
{
from: "noreply@careless-whack.net"
subject: "Amoveo alii odio illum."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Voco toties cervus carmen adnuo desparatus minima sordeo. Audentia centum dens complectus fugiat. Altus conitor defetiscor stipes aliquam alioqui tempora.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Celebrer conitor totus triumphus benevolentia compello sortitus titulus cuppedia. Ab possimus ultio officiis campana vix cresco ab teres. Cupio decimus tersus adsum depraedor commodi.
Visit: {{url}}
"""
}