Example 5090

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@enraged-acquaintance.name"
subject: "Temptatio a comitatus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Cohibeo ocer cribro consequatur tamisium animus copiose vorax. Stillicidium turbo porro quasi aetas vivo ubi tabula animadverto. Ipsa expedita comparo turba tersus terreo adamo aranea defero textor.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Barba acsi solitudo eos animadverto cui adsidue brevis videlicet charisma. Undique vespillo antea strues trans sublime vel cotidie coniecto. Recusandae fugit ascit.

Visit: {{url}}
"""
}

See also