Example 6296

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@blushing-doing.biz"
subject: "Optio defessus in."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Aut verbum balbus defendo rerum. Caelestis corrigo ars caries sopor curvo alius. Toties cupressus aro altus cultellus ab causa undique vitae textor.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Tibi vicinus concido tunc molestias tyrannus appello utilis. Sunt facilis aspicio adulescens approbo culpo. Sunt amita acies voco bis.

Visit: {{url}}
"""
}

See also