Example 15098

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@definite-straw.com"
subject: "Expedita toties dapifer."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Voco absum sonitus cubo conatus triumphus tempora tardus curia conitor. Ultio canto voluptas commemoro arto calco. Atavus adversus adflicto illum denego.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Tandem delego decor sonitus. Timidus cupio adflicto animadverto turba odit. Ipsa minus acquiro velociter.

Visit: {{url}}
"""
}

See also