Example 8184

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@acclaimed-phrase.com"
subject: "Saepe surgo laboriosam sufficio textus."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Congregatio aro sit corpus. Vociferor thermae beatae color acervus arguo. Calculus adstringo denuncio copiose cattus fugiat animadverto sulum.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Vero bardus teneo commemoro harum. Adficio color audeo caput in consequatur tremo audax templum suggero. Acies tubineus peccatus auctus virtus peior cena rem voco.

Visit: {{url}}
"""
}

See also