You are here

messaging_template_body_plain.tpl.php in Messaging 7

File

messaging_template/messaging_template_body_plain.tpl.php
View source
<?php

/**
 * @
 * Default template implementation for Mesage body - Plaintext format
 * 
 * Available variables:
 * - $header
 * - $content
 * - $footer
 * - $element, Original renderable array (Properties #format, #method, etc..)
 */
if ($header) {
  print $header;
  ?>

<?php

}
if ($content) {
  print $content;
}
if ($footer) {
  ?>

--
<?php

  print $footer;
}