| 1 |
<?php
|
| 2 |
/* $Id: forward.tpl.php,v 1.2 2009/05/13 19:39:01 seanr Exp $ */
|
| 3 |
|
| 4 |
/**
|
| 5 |
* This template should only contain the contents of the body
|
| 6 |
* of the email, what would be inside of the body tags, and not
|
| 7 |
* the header. You should use tables for layout since Microsoft
|
| 8 |
* actually regressed Outlook 2007 to not supporting CSS layout.
|
| 9 |
* All styles should be inline.
|
| 10 |
*
|
| 11 |
* For more information, consult this page:
|
| 12 |
* http://www.anandgraves.com/html-email-guide#effective_layout
|
| 13 |
*
|
| 14 |
* If you are upgrading from an old version of Forward, be sure
|
| 15 |
* to visit the Forward settings page to enable use of the new
|
| 16 |
* template system.
|
| 17 |
*/
|
| 18 |
?>
|
| 19 |
<table width="400" cellspacing="0" cellpadding="10" border="0">
|
| 20 |
<thead>
|
| 21 |
<tr>
|
| 22 |
<td>
|
| 23 |
<h1 style="font-family:Arial,Helvetica,sans-serif; font-size:18px;"><a href="<?php print $site_url; ?>" title="<?php print $site_title; ?>"><?php print $logo; ?> <?php print $site_name; ?></a></h1>
|
| 24 |
</td>
|
| 25 |
</tr>
|
| 26 |
</thead>
|
| 27 |
<tbody>
|
| 28 |
<tr>
|
| 29 |
<td style="font-family:Arial,Helvetica,sans-serif; font-size:12px;">
|
| 30 |
<?php print $forward_message; ?>
|
| 31 |
<?php if ($message) { ?>
|
| 32 |
<p><?php print t('Message from Sender'); ?></p><p><?php print $message; ?></p>
|
| 33 |
<?php } ?>
|
| 34 |
<?php if ($title) { ?><h2 style="font-size: 14px;"><?php print $title; ?></h2><?php } ?>
|
| 35 |
<?php if ($submitted) { ?><p><em><?php print $submitted; ?></em></p><?php } ?>
|
| 36 |
<?php if ($node) { ?><div><?php print $node; ?></div><?php } ?><p><?php print $link; ?></p>
|
| 37 |
</td>
|
| 38 |
</tr>
|
| 39 |
<?php if ($dynamic_content) { ?><tr>
|
| 40 |
<td style="font-family:Arial,Helvetica,sans-serif; font-size:12px;">
|
| 41 |
<?php print $dynamic_content; ?>
|
| 42 |
</td>
|
| 43 |
</tr><?php } ?>
|
| 44 |
<?php if ($forward_ad_footer) { ?><tr>
|
| 45 |
<td style="font-family:Arial,Helvetica,sans-serif; font-size:12px;">
|
| 46 |
<?php print $forward_ad_footer; ?>
|
| 47 |
</td>
|
| 48 |
</tr><?php } ?>
|
| 49 |
<?php if ($forward_footer) { ?><tr>
|
| 50 |
<td style="font-family:Arial,Helvetica,sans-serif; font-size:12px;">
|
| 51 |
<?php print $forward_footer; ?>
|
| 52 |
</td>
|
| 53 |
</tr><?php } ?>
|
| 54 |
</tbody>
|
| 55 |
</table>
|