forked from drupalprojects/share_light
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshare-message-body.tpl.php
More file actions
28 lines (28 loc) · 903 Bytes
/
share-message-body.tpl.php
File metadata and controls
28 lines (28 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
* This template should only contain the contents of the body
* of the email, what would be inside of the body tags, and not
* the header. You should use tables for layout since Microsoft
* actually regressed Outlook 2007 to not supporting CSS layout.
* All styles should be inline.
*
* For more information, consult this page:
* http://www.anandgraves.com/html-email-guide#effective_layout
*/
?>
<html>
<body>
<table width="400px" cellspacing="0" cellpadding="10" border="0">
<tbody>
<tr>
<td style="font-family:Arial,Helvetica,sans-serif; font-size:12px;">
<?php if ($values['message']): ?>
<p><?php print t('Message from Sender'); ?></p><p><?php print $values['message']; ?></p>
<?php endif; ?>
<?php echo $values['footer']; ?>
</td>
</tr>
</tbody>
</table>
</body>
</html>