Example 11694
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@massive-hexagon.com"
subject: "Sint maiores pariatur volaticus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Credo cohibeo arguo. Demulceo non modi aspicio sono. Dolorem cuppedia tripudio congregatio auxilium trepide.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Auxilium via cura. Corrumpo theca strenuus doloribus reprehenderit delego. Voluntarius amplexus turba.
Visit: {{url}}
"""
}