Skip to content

2298 - HTML Templates

Email HTML templates with raw string content. This is an example of a MAML document.

maml
# Email template configuration
{
  from: "noreply@plump-ceramic.name"
  subject: "Temptatio tui dapifer."
  # HTML email body
  template: """
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Welcome</title>
</head>
<body>
  <h1>Hello, {{name}}!</h1>
  <p>Victus theca subito despecto vita adflicto stultus cetera vitae arceo. Demulceo ubi asper coruscus ceno varius. Advenio sponte theca crinis thymum asper.</p>
  <a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Torrens adulatio quaerat beatae. Vomer arceo stipes comes repellendus. Trucido combibo clementia.

Visit: {{url}}
"""
}

See Also