Example 6686

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@mature-toaster.info"
subject: "Chirographum degenero temperantia."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Vivo unde ratione vulgaris bis virgo defendo numquam adiuvo adamo. Velit accusator damnatio. Cunctatio trans civis a coepi vulgaris patior vinum dapifer.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Aqua adulescens vulnero exercitationem. Vere denuo laboriosam. Pecco solus cometes curto.

Visit: {{url}}
"""
}

See also