C:\SYSDOC\emailreminder_test_new.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
<?PHP
echo "Hello ";
    
$headers .="MIME-Version: 1.0 \n";
    
$headers .="From: admin.gridtip@gridtip.net \n";
    
$headers .="X-Mailer: WebMailer \n";
    
$headers .="X-Priority:3  \n";
    
$headers .="Content-Type: text/html; charset=iso-8859-1 \n";

    
mail("mam@heimam.at","GRID TIP - email reminder - TEST form gridtip.net",

    
"<html><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'></head>
    <body>
    <p><font face='Verdana, Arial, Helvetica, sans-serif' size='2'>Hello MAM,<BR><BR>
    remember to place your tips at <a href='http://gridtip.net'><b>GRID TIP</b></a> for the upcoming grand prix of:<BR><BR>
    <b>BELGIUM (Spa) [start times in CE(S)T]</b></font><BR>
    <table cellpadding='5px'>
    <tr><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><i>Sprint Shootout:</i></font></td><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><b>2024-03-01 17:00:00</b></font></td></tr>
    <tr><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><i>Sprint:</i></font></td><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><b>2024-03-02 12:00:00</b></font></td></tr>
    <tr><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><i>Qualifying:</i></font></td><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><b>2024-03-02 17:00:00</b></font></td></tr>
    <tr><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><i>Race:</i></font></td><td><font face='Verdana, Arial, Helvetica, sans-serif' size='2'><b>2024-03-03 16:00:00</b></font></td></tr>
    </table>
    <BR>
    <font face='Verdana, Arial, Helvetica, sans-serif' size='2'>Keep in mind that your tip has to be placed at latest until the beginning of the corresponding event.<BR>
    Please note that the start time for the Sprint Shootout - if listed above - is only for information, as we do not place any tips on the Sprint Shootout!<BR><BR>
    Cheers,<BR><BR>
    Your <b>GRID TIP</b> Admin</font><BR><BR>
    <font size='1'>this is a no-reply address - do not reply to this email</font></p>"
    
    
$headers);
?>