Example 6495

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@gigantic-oil.info"
subject: "Aegre cruciamentum basium varietas magnam."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Vito campana corona. Vulnero cupio viridis vetus infit doloremque xiphias crastinus. Inflammatio bis vis impedit taedium depopulo cultura vomica tener.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Desipio suscipit aetas crebro. Sustineo thermae decipio sonitus supra inventore. Quis sophismata cura perferendis saepe magni delego.

Visit: {{url}}
"""
}

See also