Example 11292

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@flowery-language.name"
subject: "Teneo benigne thymum denique."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Defaeco cupio vester. Vinitor toties peior pax voveo commodi convoco culpo veniam. Appono conculco peccatus.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Concedo maxime defungo a quis terebro. Velum vulpes antea bardus cultura amoveo vis cenaculum degero. Alias aveho vesica tertius totus libero cena.

Visit: {{url}}
"""
}

See also