Example 14083
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@grimy-yarmulke.biz"
subject: "Veniam ocer cohaero."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Sunt cenaculum atrocitas minima acerbitas vociferor. Aeger vulnus bos. Spargo auditor curia mollitia.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Tollo angelus tandem comis temporibus tristis ceno adduco ea abundans. Aegrus caelum damnatio voluptate laboriosam amita. Unde chirographum minima volo quae benigne avarus tactus.
Visit: {{url}}
"""
}