You are here

mimemail-message.tpl.php in Mime Mail 7

Same filename and directory in other branches
  1. 6 theme/mimemail-message.tpl.php

Default theme implementation to format an HTML mail.

Copy this file in your default theme folder to create a custom themed mail. Rename it to mimemail-message--[module]--[key].tpl.php to override it for a specific mail.

Available variables:

  • $recipient: The recipient of the message
  • $subject: The message subject
  • $body: The message body
  • $css: Internal style sheets
  • $module: The sending module
  • $key: The message identifier

File

theme/mimemail-message.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to format an HTML mail.
 *
 * Copy this file in your default theme folder to create a custom themed mail.
 * Rename it to mimemail-message--[module]--[key].tpl.php to override it for a
 * specific mail.
 *
 * Available variables:
 * - $recipient: The recipient of the message
 * - $subject: The message subject
 * - $body: The message body
 * - $css: Internal style sheets
 * - $module: The sending module
 * - $key: The message identifier
 *
 * @see template_preprocess_mimemail_message()
 */
?>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <?php

if ($css) {
  ?>
    <style type="text/css">
      <!--
      <?php

  print $css;
  ?>
      -->
    </style>
    <?php

}
?>
  </head>
  <body id="mimemail-body" <?php

if ($module && $key) {
  print 'class="' . $module . '-' . $key . '"';
}
?>>
    <div id="center">
      <div id="main">
        <?php

print $body;
?>
      </div>
    </div>
  </body>
</html>