Example 16693
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@punctual-repeat.info"
subject: "Subnecto compono utique ceno."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Harum doloremque coaegresco vulgo commodo tam adsuesco suus vorago thermae. Aeger beatae arca decerno ad turpis ambulo ulciscor aegrus reiciendis. Coerceo cariosus tolero despecto aspernatur crustulum valde deinde bestia fugit.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Dapifer vere depereo solus nulla cubo clementia ambitus. Officia corroboro paens stipes comparo sordeo concido error caelum pel. Bellum tibi tabella sublime.
Visit: {{url}}
"""
}