Appearance
1283 - HTML Templates
Email HTML templates with raw string content. This is an example of a MAML document.
maml
# Email template configuration
{
from: "noreply@hairy-ethyl.com"
subject: "Ducimus volaticus utpote atque trucido."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Suppono patrocinor alienus. Amoveo considero attero aestus tempus blanditiis audacia sint. Thema tot tibi soluta depraedor confugo uter.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Animadverto vesper hic copiose ago depereo. Annus video ulterius tot deleo tametsi claro similique ubi. Repellendus eligendi impedit dolorum.
Visit: {{url}}
"""
}