Example 10083

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@close-bidet.org"
subject: "Sequi crux conitor."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Antiquus curriculum virga deinde tenuis dedecor qui amissio bibo deorsum. Suffragium vulariter administratio aspicio esse cunae stips venio. Vel ait surgo celo cultura.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Adversus neque spiritus. Conventus omnis acies alo summa quisquam. Solio non armarium triduana.

Visit: {{url}}
"""
}

See also