Example 2000

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@medium-countess.biz"
subject: "Sunt nemo consequatur thesaurus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Sollers tres curto desolo deporto cupressus catena. Deripio aliqua talis arguo. Sto uxor clam.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Adamo altus abduco. Esse temperantia vesica cauda taedium optio defendo sustineo. Vomito velociter turbo sto adsuesco copia suppono.

Visit: {{url}}
"""
}

See also