Skip to content

200 - HTML Templates

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

maml
# Email template configuration
{
  from: "noreply@celebrated-concentration.org"
  subject: "Apud dedico valetudo."
  # HTML email body
  template: """
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Welcome</title>
</head>
<body>
  <h1>Hello, {{name}}!</h1>
  <p>Acquiro cibo trucido. Cubicularis eum derideo tabernus utor. Abundans placeat corrigo stultus veritas capillus corrupti vallum amplexus.</p>
  <a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Nemo speciosus enim amplitudo velociter crinis quod sonitus sto. Vestrum incidunt laborum. Ultra acies defendo defleo.

Visit: {{url}}
"""
}

See Also