Example 1794

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@trustworthy-distinction.biz"
subject: "Adsuesco utroque caute adicio."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Cibus angelus adicio contigo capio adversus textor acceptus adflicto. Suspendo amet cotidie ago arbor. Strues provident creber cubo temporibus vito repudiandae vereor audeo.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Cupio verumtamen astrum aliqua apto. Ex apostolus curiositas. Veritatis aliquam texo cogito in utor vitiosus.

Visit: {{url}}
"""
}

See also