Example 8891
HTML Templates
Email HTML templates with raw string content.
# Email template configuration
{
from: "noreply@similar-oil.name"
subject: "Carcer ulterius tabernus vulgo."
# HTML email body
template: """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Welcome</title>
</head>
<body>
<h1>Hello, {{name}}!</h1>
<p>Maiores amplitudo absconditus ager aliqua asperiores animadverto inventore. Cohors error ipsum apostolus angelus desidero. Vir cedo animi uredo spes.</p>
<a href="{{url}}">Get Started</a>
</body>
</html>
"""
# Plain text fallback
plain_text: """
Hello, {{name}}!
Carmen taceo celo vesco considero bos ventito vomica quae est. Volaticus vesper suscipio victoria. Victus ager carmen cur adamo vulgo subito vomica.
Visit: {{url}}
"""
}