Example 16589

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@genuine-intent.net"
subject: "Allatus cupiditate harum ulciscor addo conicio."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Caveo damnatio concedo artificiose suppellex bos ater tergeo odio. Adstringo ara temperantia. Spoliatio campana vulnero ceno valens decerno arceo debitis vae stillicidium.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

# Plain text fallback
plain_text: """
Hello, {{name}}!

Deludo verto magnam decens officia ter benevolentia caelum maiores. Ex vulgaris quam sequi solium appositus. Denique nemo iure.

Visit: {{url}}
"""
}

See also