Example 9491

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@mediocre-blowgun.biz"
subject: "Adflicto decretum avaritia voluptatum."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Capitulus calcar comedo patior. Velut vae ulciscor crustulum terga aequitas. Textus accusamus adulatio ab vix tempora dignissimos aveho.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Sortitus depereo tenetur vae tactus odit temperantia temptatio virga amissio. Tandem calco cenaculum despecto texo advenio apparatus amiculum. Cruciamentum utroque textor supplanto tracto credo tergiversatio socius ascit.

Visit: {{url}}
"""
}

See also