-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemail.php
More file actions
87 lines (41 loc) · 1.8 KB
/
Copy pathemail.php
File metadata and controls
87 lines (41 loc) · 1.8 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
$emailID = $email1;
$subject = "Dear. $name1 . Here is your Odyssey ID";
$body = <<<EOD
<table cellspacing="0" cellpadding="1" border="1">
<tbody>
<tr>
<td style="padding: 5px 10px;" width="150">Name: </td>
<td style="padding: 5px 10px;">$name1</td>
</tr>
<tr>
<td style="padding: 5px 10px;" width="150">Mobile: </td>
<td style="padding: 5px 10px;">$mobile1</td>
</tr>
<tr>
<td style="padding: 5px 10px;" width="150">Email: </td>
<td style="padding: 5px 10px;">$email1</td>
</tr>
<tr>
<td style="padding: 5px 10px;" width="150">Odyssey ID: </td>
<td style="padding: 5px 10px;">$event_id</td>
</tr>
<tr>
<td style="padding: 5px 10px;" width="150">Note: </td>
<td style="padding: 5px 10px;">Registration will be confirmed after successfull payment.</td>
</tr>
<tr>
<td style="padding: 5px 10px;" width="150">Like us on Facebook: </td>
<td style="padding: 5px 10px;"><a href="https://www.facebook.com/pages/Odyssey/938996026119430">Like Us Now and stay updated</a></td>
</tr>
</tbody>
</table>
EOD;
$headers = "From: odyssey@jainbgm.in\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
$headers .= "X-Priority: 1\r\n";
$headers .= "X-MSMail-Priority: High\n";
$headers .= "X-Mailer: PHP" . phpversion() . "\r\n";
mail($emailID, $subject, $body, $headers);
?>