Example 1891

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@stiff-fund.biz"
subject: "Distinctio deleo vesper sordeo terminatio."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Aperiam spes acceptus maiores canto altus tersus. Cruentus qui supplanto vinum amo ultio. Adhuc solum tamquam derideo sopor amplexus stabilis amita ulciscor.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

# Plain text fallback
plain_text: """
Hello, {{name}}!

Defungo calculus subnecto unus caste aer apud cimentarius. Admitto audentia libero arcesso celo agnosco ante curvo. Sodalitas pax cunabula aufero aestus congregatio vulgivagus.

Visit: {{url}}
"""
}

See also