Example 14288
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@poor-colonialism.biz"
subject: "Supellex colo claudeo adficio sopor."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Cunctatio cumque civis perferendis antiquus blandior adhuc pauper suppellex. Ubi adipiscor collum magnam vere convoco curto cunctatio verto cariosus. Triumphus accendo abbas decipio caecus amita.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Conatus stipes caries pel cruciamentum deorsum capitulus strues. Despecto defetiscor calco. Turpis recusandae abutor abduco.
Visit: {{url}}
"""
}