Example 14182

HTML Templates

Email HTML templates with raw string content.

# Email template configuration
{
from: "noreply@oblong-pasta.biz"
subject: "Corrigo sulum anser sui."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Timor dolores dignissimos alter testimonium absorbeo amicitia bonus blandior surgo. Tamdiu sublime corpus denuncio aufero nobis pauper spoliatio uterque. Excepturi utilis chirographum amo vulnero sperno amor magnam capillus.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Audax adulatio atqui cunabula solio aro hic averto caveo valens. Adiuvo supellex cogo aranea conscendo. Voluptatem alius conforto adsidue illo tabella tredecim recusandae acsi vilitas.

Visit: {{url}}
"""
}

See also