Example 11082

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@heavenly-teammate.biz"
subject: "Attollo crebro abeo solium."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Sonitus cibo advenio dapifer ullam vaco. Repellendus distinctio vulnero attero delibero volo circumvenio cernuus. Bestia cubitum aliquam coaegresco campana decens benevolentia culpo desino appello.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Comburo aduro ducimus. Viscus bos uterque possimus condico. In tunc desidero auditor.

Visit: {{url}}
"""
}

See also