2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2008-05-30 11:40:08 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2013-02-08 13:41:57 +00:00
|
|
|
* @package app.View.Layouts.Email.html
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
|
|
|
<html>
|
|
|
|
<head>
|
2014-09-18 08:50:35 +00:00
|
|
|
<title><?php echo $this->fetch('title'); ?></title>
|
2008-05-30 11:40:08 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2013-02-08 13:41:57 +00:00
|
|
|
<?php echo $this->fetch('content'); ?>
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2017-06-10 21:33:55 +00:00
|
|
|
<p>This email was sent using the <a href="https://cakephp.org">CakePHP Framework</a></p>
|
2008-05-30 11:40:08 +00:00
|
|
|
</body>
|
2008-11-08 02:54:07 +00:00
|
|
|
</html>
|