Example 10387
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@eminent-sightseeing.biz"
subject: "Tremo pecco despecto nemo."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Caput taceo demo conscendo curatio denego canis celo. Aequitas brevis trepide ait desolo bardus tamquam. Cubicularis tergeo sit coepi casus absens thesis decor.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Traho suscipio caritas tergiversatio soleo allatus libero delinquo tui brevis. Spoliatio campana vorax subseco cura. Xiphias sto vulpes provident tabernus stipes atque canis astrum vere.
Visit: {{url}}
"""
}