swiftmailer.tpl.php in Swift Mailer 7
The default template file for e-mails.
1 theme call to swiftmailer.tpl.php
- SWIFTMailSystem::format in includes/
classes/ SWIFTMailSystem.inc - Formats a message composed by drupal_mail().
File
includes/theme/swiftmailer.tpl.phpView source
<?php
/**
* @file
* The default template file for e-mails.
*/
?>
<style type="text/css">
table tr td {
font-family: Arial;
font-size: 12px;
}
</style>
<div>
<table width="800px" cellpadding="0" cellspacing="0">
<tr>
<td>
<div style="padding: 0px 0px 0px 0px;">
<?php
print $body;
?>
</div>
</td>
</tr>
</table>
</div>