-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmail.class.php
31 lines (30 loc) · 989 Bytes
/
Email.class.php
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
29
30
31
<?php
require_once('local.php');
//require_once('library/mailer/SendGrid_loader.php');
//$sendgrid = new SendGrid(EMAILER_USERNAME, EMAILER_PASSWORD);
//$mail = new SendGrid\Mail();
function mailHeader(){
return '
<table style="font-family: verdana; border:1px solid #ccc; padding:8px; margin:8px;" align="center">
<tr>
<td><img src="https://targetcgwarehouse.com/a/app/img/mailer-header.jpg" alt="Mailer Header" ></td>
</tr>
<tr>
<tr>
<td style="padding:20px;">
';
}
function mailFooter(){
return '
</td>
</tr>
</tr>
<tr>
<td bgcolor="#7A7A7A" style="color:#fff; text-align:center;padding:10px; font-size:10px; ">
Any immediate questions, please email – <a style="color:#fff" href="mailto:[email protected]" style="color:#fff">[email protected]</a>
</td>
</tr>
</table>
';
}
?>