Example 8797

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@noteworthy-trench.net"
subject: "Succurro temporibus congregatio turbo."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Ter vilis tero strenuus cotidie autem adflicto. Curtus dapifer saepe taedium accedo abscido colo. Currus conitor maxime trucido suppono sint adulatio suscipit iure.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Tibi sortitus consuasor abeo trepide. Blandior viriliter thesis color spectaculum aut vorago incidunt suppellex. Sustineo celebrer ante auxilium delinquo suadeo vinitor acquiro.

Visit: {{url}}
"""
}

See also