Example 2499
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@puzzled-mozzarella.net"
subject: "Ipsa solitudo casus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Absens demo omnis amaritudo patrocinor damno credo. Tracto cubitum vulariter adipisci defaeco tepidus. Celer pauper benigne iusto tracto ex.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Patruus cervus timidus terebro officia creptio. Labore uredo vorax tergiversatio verus voluptatum perferendis. Depraedor virtus harum eos facere aliquid cresco crepusculum callide.
Visit: {{url}}
"""
}