Example 10595

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@silver-mozzarella.name"
subject: "Aeneus addo placeat bibo aggero arceo."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Somniculosus copiose enim. Demoror alioqui decipio. Cubitum verbera temporibus dolores cariosus.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Supra quam sui abscido. Caveo absque dolore arcus apud clamo tamdiu aestivus corrumpo. Chirographum viduo cado.

Visit: {{url}}
"""
}

See also