Appearance
2899 - HTML Templates
Email HTML templates with raw string content. This is an example of a MAML document.
maml
# Email template configuration
{
from: "noreply@early-peony.name"
subject: "Stips conscendo accusamus odio calco damnatio."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Avarus aegre delego vulgo deserunt theatrum aptus astrum. Ustulo amplitudo velit trepide suffoco quisquam ultra hic. Viridis aveho vulgo ulterius alveus verbera depereo.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Cohibeo temperantia ipsam victoria desparatus peccatus bos tergo. Convoco apostolus arcesso unus illum amplitudo. Cado infit vomer totidem eveniet carpo delectatio adfectus facere coniuratio.
Visit: {{url}}
"""
}