messaging_htmlmail.tpl.php in Messaging 7
1 theme call to messaging_htmlmail.tpl.php
- Messaging_HTML_MailSystem::format in messaging_htmlmail/
messaging_htmlmail.inc - Concatenate and wrap the e-mail body for plain-text mails.
File
messaging_htmlmail/messaging_htmlmail.tpl.phpView source
<?php
/**
* @
* Default template implementation for Mesage body -HTML format
*
* Available variables:
* - $body
* - $element, Original renderable array
* - $css, Custom css, to be injected maybe with some pre-processing function
*/
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
if (!empty($css)) {
?>
<style type="text/css">
<!--
<?php
print $css;
?>
-->
</style>
<?php
}
?>
</head>
<body id="message-body">
<?php
if ($body) {
?>
<?php
print $body;
?>
<?php
}
?>
</body>
</html>