webform-email-html.html.twig in Webform 8.5
Same filename and directory in other branches
Default theme implementation for webform email wrapper template as HTML.
1 theme call to webform-email-html.html.twig
- WebformPhpMail::format in src/
Plugin/ Mail/ WebformPhpMail.php - Concatenates and wraps the email body for plain-text mails.
File
templates/webform-email-html.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation for webform email wrapper template as HTML.
- *
- * @ingroup themeable
- */
- #}
- <html>
- <head>
- <title>{{ subject }}</title>
- </head>
- <body>
- {{ body|raw }}
- </body>
- </html>