Example 12397

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@vivacious-sightseeing.info"
subject: "Adflicto thermae coruscus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Anser creber ambulo accendo carmen celo arx tondeo ipsam itaque. Atavus sordeo coniuratio decretum itaque templum. Suus esse illum capio xiphias.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Tondeo sollicito alii. Recusandae denique admoneo vapulus soleo delibero sonitus. Vesper ascisco ancilla claro natus placeat.

Visit: {{url}}
"""
}

See also