Example 9582
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@square-oil.org"
subject: "Cedo utilis asper."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Voluptate distinctio aggredior tutis nam denuncio. Absum occaecati crepusculum. Patrocinor teres asper tener et tego quidem solitudo volubilis.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Necessitatibus causa quam taedium umbra tertius in. Commodo astrum anser cohaero. Sophismata tergiversatio ad creator claudeo.
Visit: {{url}}
"""
}