simplenews-newsletter-body.tpl.php in Simplenews 6.2
Same filename and directory in other branches
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
Available tokens:
- [simplenews-unsubscribe-url]: unsubscribe url to be used as link
for more tokens: see simplenews_token_list()
Note that unsubscribe links are broken in case of test send to a non-subscriber.
1 theme call to simplenews-newsletter-body.tpl.php
- simplenews_mail in ./simplenews.module 
- Implementation of hook_mail().
File
theme/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
 *
 * Available tokens:
 * - [simplenews-unsubscribe-url]: unsubscribe url to be used as link
 * for more tokens: see simplenews_token_list()
 *
 * Note that unsubscribe links are broken in case of test send to a non-subscriber.
 *
 * @see template_preprocess_simplenews_newsletter_body()
 */
?>
<h2><?php
print $title;
?></h2>
<?php
print $body;