simplenews-newsletter-body.tpl.php in Simplenews 6
Default theme implementation to format the simplenews newsletter body.
Copy this file in your theme directory to create a custom themed body. Rename it to simplenews-newsletter-body--<tid>.tpl.php to override it for a newsletter using the newsletter term's id.
Available variables:
- node: Newsletter node object
- $body: Newsletter body (formatted as plain text or HTML)
- $title: Node title
- $language: Language object
1 theme call to simplenews-newsletter-body.tpl.php
- simplenews_mail in ./
simplenews.module - Implementation of hook_mail().
File
simplenews-newsletter-body.tpl.phpView source
<?php
/**
* @file
* Default theme implementation to format the simplenews newsletter body.
*
* Copy this file in your theme directory to create a custom themed body.
* Rename it to simplenews-newsletter-body--<tid>.tpl.php to override it for a
* newsletter using the newsletter term's id.
*
* Available variables:
* - node: Newsletter node object
* - $body: Newsletter body (formatted as plain text or HTML)
* - $title: Node title
* - $language: Language object
*
* @see template_preprocess_simplenews_newsletter_body()
*/
?>
<h2><?php
print $title;
?></h2>
<?php
print $body;