Example 5094

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@crooked-conservation.name"
subject: "Temptatio cattus nisi clam."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Ambitus abduco aranea cursim campana atqui. Acer circumvenio vomica vulgus solio triumphus. Curto brevis deinde.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Depraedor coaegresco carpo subiungo delibero ab credo. Tergeo averto spiritus supellex cimentarius acerbitas. Aegrotatio aduro abundans vilitas sollicito crebro.

Visit: {{url}}
"""
}

See also