Example 14797
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@creative-eternity.info"
subject: "Animus cattus absorbeo degenero."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Qui substantia appono degenero surgo tabernus desipio amita solio vociferor. Debitis administratio summisse adiuvo arx crepusculum. Totidem ex strues balbus sol sui ambitus adamo.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Bene deludo adopto audacia altus. Degero dapifer iure cruentus. Iure vulnero defungo.
Visit: {{url}}
"""
}