Example 15595

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@strict-mobility.info"
subject: "Culpo arbor ante considero toties maxime."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Nostrum deleniti trepide ustilo cometes absque cumque tandem patior sopor. Adulescens verumtamen eos. Umquam ut avarus eveniet cinis sordeo cariosus eaque dolores abutor.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Caelestis tempora comitatus conicio ager tres tero. Caries cenaculum torrens suscipio caelestis clam. Anser vulgivagus atavus deficio.

Visit: {{url}}
"""
}

See also