pluginGino-phpmailer
 All Data Structures Namespaces Files Functions Variables Pages
mailing.php
Go to the documentation of this file.
1 <?php
17 ?>
18 <html>
19  <head>
20  <title></title>
21  <style>
22  body {
23  background-color: #FFF;
24  width:100% !important;
25  }
26  section#content {
27  width: 400px;
28  height: 600px;
29  background-color: #F2F2F2;
30  /*background: url('http://domain.com/images/image_bg.jpg');*/
31  border: 1px solid black;
32  margin: 0 auto;
33  padding: 2px;
34  }
35  section#content header h1 {
36  text-align: center;
37  }
38  article {
39  padding: 10px 0px;
40  }
41  </style>
42  </head>
43  <body>
44  <section id="content">
45  <header>
46  <h1 class="left"><?= $title ?></h1>
47  <? if($subtitle): ?>
48  <h2><?= $subtitle ?></h2>
49  <? endif ?>
50  <img src="cid:img1" />
51  </header>
52  <? if(count($items)): ?>
53  <? foreach($items as $item): ?>
54  <article>
55  <?= $item ?>
56  </article>
57  <? endforeach ?>
58  <? endif ?>
59  <footer>
60  <?php if($image): ?>
61  <img src="<?= $image ?>" />
62  <? endif ?>
63  </footer>
64  </section>
65  </body>
66 </html>