Example 12892

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@understated-juggernaut.net"
subject: "Stips ademptio depono."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Dolore magni deprecator venia sum ex possimus creta benevolentia adstringo. Maiores adflicto crepusculum adversus certus volo vivo angelus. Acervus adsum asper tamdiu iste verumtamen talio vulgo vitiosus utique.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Una similique coniuratio. Despecto supra tabgo credo dedecor sophismata tabernus paens veritatis repellendus. Bestia conitor aiunt nisi virgo animadverto amo collum victoria.

Visit: {{url}}
"""
}

See also