You are here

webform-email-html.html.twig in Webform 8.5

Same filename and directory in other branches
  1. 6.x templates/webform-email-html.html.twig

Default theme implementation for webform email wrapper template as HTML.

File

templates/webform-email-html.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for webform email wrapper template as HTML.
  5. *
  6. * @ingroup themeable
  7. */
  8. #}
  9. <html>
  10. <head>
  11. <title>{{ subject }}</title>
  12. </head>
  13. <body>
  14. {{ body|raw }}
  15. </body>
  16. </html>