Skip to content

787 - HTML Templates

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

maml
# Email template configuration
{
  from: "noreply@puny-representation.biz"
  subject: "Ascisco terminatio accusamus comedo tantum."
  # HTML email body
  template: """
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Welcome</title>
</head>
<body>
  <h1>Hello, {{name}}!</h1>
  <p>Despecto alius admoneo. Thesis vicissitudo iure arcus claro tabernus arto turbo. Tyrannus nam civitas tristis vado confido.</p>
  <a href="{{url}}">Get Started</a>
</body>
</html>
"""

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

Carcer statim sint aduro adfero atqui thalassinus defungo. Suffragium careo thema sono. Defetiscor auctor veniam ustulo sopor astrum.

Visit: {{url}}
"""
}

See Also