Example 13485

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@rural-monocle.com"
subject: "Culpo arcesso adversus beneficium."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Concedo articulus conforto tam. Patior creber absorbeo alienus blandior. Aestivus synagoga adhuc hic consectetur odio virgo saepe iure.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Varietas quibusdam bibo. Distinctio consequatur accusantium temptatio verbum adversus uter iste vomer. Comis tolero vorax compello calamitas vindico patria tamquam.

Visit: {{url}}
"""
}

See also