Example 9388
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@dead-video.com"
subject: "Auxilium decimus color ancilla solvo."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Clam confido commemoro aperio comburo cribro vociferor provident sopor dolor. Molestias consectetur occaecati. Abstergo aequus supellex.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Deporto talis congregatio. Abeo umquam cohibeo doloremque demoror decens tam antepono sol correptius. Voco alter tamen considero voco corroboro altus demoror.
Visit: {{url}}
"""
}