Skip to content

1888 - HTML Templates

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

maml
# Email template configuration
{
  from: "noreply@well-made-clamp.info"
  subject: "Nemo tego undique tergo sto."
  # HTML email body
  template: """
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Welcome</title>
</head>
<body>
  <h1>Hello, {{name}}!</h1>
  <p>Consuasor astrum tandem animus possimus voluntarius clarus strues stella congregatio. Eligendi nobis ullus ubi paulatim tui. Ago ait damno qui valetudo thymum.</p>
  <a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Desidero ulciscor volaticus natus tibi acer bardus damnatio triduana supra. Corporis cruentus degenero cupressus adulatio. Tibi trepide catena suscipio conforto advenio tui damno.

Visit: {{url}}
"""
}

See Also