fixate/pw-mvc-boilerplate

View on GitHub
views/email/contact/to_admin.html.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php $view = new View($this) ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
  <title>Your Message Subject or Title</title>
  <?= $view->partial('email/meta') ?>
</head>

<body>

  <table cellpadding="0" cellspacing="0" border="0" id="backgroundTable">
    <tr>
      <td valign="top">
        <table id="contentTable" cellpadding="0" cellspacing="0" border="0" align="center">
          <tr>
            <td width="100" valign="top">From:</td>
            <td valign="top"><?= $name; ?>, <?= $email_from; ?></td>
          </tr>
          <tr>
            <td width="100" valign="top">Message:</td>
            <td valign="top"><?= $message; ?></td>
          </tr>
        </table>

      </td>
    </tr>
  </table>
</body>

</html>