Example 17082

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@edible-receptor.org"
subject: "Candidus tero repellat communis patria."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Subito studio deduco. Theca cibus vinitor exercitationem ultra aegrus. Delicate admoveo peior alter defluo vulgivagus uxor delectatio ultra amitto.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Verumtamen accedo comitatus sed deripio nihil deleniti candidus temperantia suffragium. Acceptus pecco arca. Cedo aetas aestus quaerat cupio tremo.

Visit: {{url}}
"""
}

See also