Example 8786

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@same-tackle.name"
subject: "Repellat amaritudo vero aegre vester."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Decerno vetus depopulo corrigo incidunt cur. Utique carus aer canto suppellex. Aestas cervus cognomen magnam acerbitas deinde curso.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Vilitas defleo in laudantium articulus nam uxor trepide desino culpo. Absconditus vir corrupti. Sint ventosus sum officiis capillus convoco.

Visit: {{url}}
"""
}

See also