Appearance
400 - HTML Templates
Email HTML templates with raw string content. This is an example of a MAML document.
maml
# Email template configuration
{
from: "noreply@repentant-rationale.com"
subject: "Candidus aut cinis terror officia."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Valde defero astrum vado minima. Tripudio autus uberrime crux contra carcer assentator delicate. Theologus admoneo vallum appositus adeo.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Vester optio depereo nihil stips. Demo ater conforto censura vicinus amitto tergiversatio vigilo. Decor ulciscor color officia.
Visit: {{url}}
"""
}