Example 14190

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@wide-eyed-nougat.net"
subject: "Depulso sollicito basium solutio."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Ipsa volup vesica absorbeo ars deleo depereo acsi. Virgo solitudo deripio pectus sumptus calamitas apto peior vivo. Caelestis vulticulus clementia deporto consequuntur conscendo veritas appello.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Vulpes cras beatae verbera. Conduco necessitatibus complectus deinde. Delectus texo utrum aequitas causa.

Visit: {{url}}
"""
}

See also