Example 16190

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@common-other.net"
subject: "Usitas aegrus tempus cresco tremo suppono."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Explicabo umquam solus attonbitus tabgo clamo velociter agnitio. Officia aurum copia spiritus comminor fugiat sulum adhaero. Administratio rem sono abeo benigne carcer.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Vacuus vinco caveo aqua alo commodo. Adaugeo esse tergo depopulo. Blandior eveniet casso apud maxime solum.

Visit: {{url}}
"""
}

See also