forked from KIClubinfo/kiro-judge-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.html
114 lines (109 loc) · 6.75 KB
/
mail.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
$to = $safe_email;
$subject = 'Validation de compte KIRO'
$message= '
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Validation de compte KIRO</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body style="margin: 0; padding: 0;">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="padding: 10px 0 30px 0;">
<table align="center" border="0" cellpadding="0" cellspacing="0" width="600" style="border: 1px solid #cccccc; border-collapse: collapse;">
<tr>
<td align="center" bgcolor="#333333" style="padding: 40px 0 30px 0; color: #222222; font-size: 28px; font-weight: bold; font-family: Arial, sans-serif;">
<img src="https://nsa40.casimages.com/img/2020/08/04/200804062120397414.png" width="362" height="230" style="display: block;"/>
</td>
</tr>
<tr>
<td bgcolor="#ffffff" style="padding: 40px 30px 40px 30px;">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="color: #222222; font-family: Arial, sans-serif; font-size: 24px;">
<b>Validation de ton compte KIRO</b>
</td>
</tr>
<tr>
<td style="padding: 20px 0 30px 0; color: #222222; font-family: Arial, sans-serif; font-size: 16px; line-height: 20px;">
Salut '.$safe_prenom_1.',<br/>
<br/>
Le club informatique des Ponts (KI pour les intimes) te confirme que tu es bien inscrit au KIRO au sein de
l’équipe :
</td>
</tr>
<tr>
<td bgcolor="#444444" style="text-align:center; padding: 20px 0 20px 0; color: white; font-family: Arial, sans-serif; font-size: 30px; line-height: 20px;">
'.$team-name.'
</td>
</tr>
<tr>
<td style="padding: 20px 0 20px 0; color: #222222; font-family: Arial, sans-serif; font-size: 16px; line-height: 20px;">
Avec tes coéquipiers talentueux :
</td>
</tr>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="260" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td bgcolor="#444444" style="text-align:center; padding: 20px 0 20px 0; color: white; font-family: Arial, sans-serif; font-size: 20px; line-height: 20px;">
'.$safe_prenom_2.'<br/>'.$safe_nom_2.'
</td>
</tr>
</table>
</td>
<td style="font-size: 0; line-height: 0;" width="20">
</td>
<td width="260" valign="top">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td bgcolor="#444444" style="text-align:center; padding: 20px 0 20px 0; color: white; font-family: Arial, sans-serif; font-size: 20px; line-height: 20px;">
'.$safe_prenom_3.'<br/>'.$safe_nom_3.'
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding: 20px 0 0 0; color: #222222; font-family: Arial, sans-serif; font-size: 16px; line-height: 20px;">
Pour accéder au site du KIRO Judge, où vous mettrez en ligne vos résultats et verrez votre place dans la
compétition,<br/> c’est <a href="">ici</a> avec l’identifiant :<br/> '.$id.'<br/> et le mot de passe :<br/> '.$ready_password_1.'.<br/>
<br/>
A bientôt au KIRO,<br/>
<br/>
Amicalement,<br/>
<br/>
Le KI.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#1BA6D3" style="padding: 30px 30px 30px 30px;">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="color: rgb(30,30,30); font-family: Arial, sans-serif; font-size: 14px;" width="100%">
Cet email a été envoyé automatiquement, merci de ne pas y répondre.
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
'
?>