Appearance
1796 - HTML Templates
Email HTML templates with raw string content. This is an example of a MAML document.
maml
# Email template configuration
{
from: "noreply@recent-coil.biz"
subject: "Aiunt totidem copia aut temporibus calamitas."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Soleo aiunt vinculum amoveo desidero arguo casus vestrum tamen apto. Pauper video demitto ciminatio explicabo cursim aqua curtus. Usitas paulatim traho ventus supellex ascit.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Taedium crapula asperiores stillicidium. Vinco adeptio adficio verto. Ustilo conscendo alveus corpus veniam tempore atavus ambitus.
Visit: {{url}}
"""
}