Skip to content

1797 - HTML Templates

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

maml
# Email template configuration
{
  from: "noreply@gruesome-mousse.net"
  subject: "Verto cetera officia excepturi sol aeternus."
  # HTML email body
  template: """
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Welcome</title>
</head>
<body>
  <h1>Hello, {{name}}!</h1>
  <p>Solum officiis aeternus tui arbor averto theca torqueo. Aveho aliquam a. Depraedor cruciamentum tepesco dolorum aliqua deprecator cilicium tactus terror.</p>
  <a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Adulescens ab curtus. Carbo vorago creber. Conicio aperte centum auditor suppono cognomen.

Visit: {{url}}
"""
}

See Also