Example 16285
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@roasted-term.net"
subject: "Demitto caelum utique tactus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Defaeco tamen terebro deripio vomer doloribus ullus curia averto delibero. Canto adfero neque decretum defungo. Corrupti comminor cognomen adaugeo vesica deporto utpote apto conforto.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Cultura civis alveus auctor asper. Crastinus cenaculum tandem thema coma comis expedita auctus. Degusto viduo sollicito adeo.
Visit: {{url}}
"""
}