/[drupal]/contributions/modules/forward/forward.tpl.php
ViewVC logotype

Contents of /contributions/modules/forward/forward.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download) (as text)
Tue Nov 3 22:51:13 2009 UTC (3 weeks ago) by seanr
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +2 -2 lines
File MIME type: text/x-php
#545018 - Forward link appears on forward form by joachim
#366926 - Form and Use Proper From and Reply-To Fields by Chad_Dupuis
#582922 - "Allow" personal Message "requires" the Message by derjochenmeyer
#511472 - Provide option for personal messages to be disabled, enabled, and required by koenvw
#617284 - Title from settings page doesn't take effect by justin2pin
#621910 - Improved forward_link by benoit.borrel
#612980 - two small bugs w/ fixes by adixon
#511976 - Fatal error when forwarding a view by orianasarac
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>

  ViewVC Help
Powered by ViewVC 1.1.2