Example 9796

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@unsung-patroller.net"
subject: "Anser demulceo culpo eum avarus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Agnosco talus canto corporis advoco admoneo pariatur brevis censura uredo. Ter victoria animi tergo pecco tabgo curo. Vivo cultura vaco alter decor urbs demum uterque confugo.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Abscido cohaero contabesco. Acsi rerum tabgo. Tepesco autem cumque bellicus vero.

Visit: {{url}}
"""
}

See also