Example 3384

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@stingy-cricket.biz"
subject: "Celebrer veritas sublime ager."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Aperiam correptius decor. Abundans utrimque vox socius subnecto verumtamen. Valeo capio texo dens tardus appono cogito corrumpo.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Veritatis occaecati a amor. Arto ante traho illo. Aurum avaritia ater.

Visit: {{url}}
"""
}

See also