-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathemail-template.php
134 lines (104 loc) · 4.29 KB
/
email-template.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<html>
<head>
<title>Spotify Download</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<style>
@font-face{
font-family: "Montserrat";
src : url("http://198.199.95.116/fonts/Montserrat/Montserrat-Bold.ttf")
}
@font-face{
font-family: "Muli";
src : url("http://198.199.95.116/fonts/Muli/Muli-ExtraBold.ttf");
font-weight: 800;
}
@font-face{
font-family: "Muli";
src : url("http://198.199.95.116/fonts/Muli/Muli-Light.ttf");
font-weight: 300;
}
@font-face{
font-family: "Muli";
src : url("http://198.199.95.116/fonts/Muli/Muli-Regular.ttf");
font-weight: 400;
}
.logo{
width:150px;
}
.emailheader{
font-family: "Montserrat", arial;
font-weight: 700;
opacity: 0.74;
}
h2{
font-family: "Muli", arial;
font-weight: 300;
font-size:18px;
}
.footer{
background-color:rgba(1,1,1,0.07);
padding:50px;
margin-top: 80px
}
a{
font-family: "Muli", arial;
font-weight: 800;
color:rgba(1,1,1,0.54);
}
p{
font-family: "Muli", arial;
font-weight: 400;
color:rgba(1,1,1,0.54);
line-height: 2em
}
h1{
margin-bottom: 50px
}
</style>
</head>
<body>
<div class = "container">
<div class = "row">
<div class = "col-md-2">
</div>
<div class = "col-md-8" id="col8">
<img src = "http://198.199.95.116/green.png" class = "logo">
<center>
<h1 class = "emailheader"> Your Spotify Playlist is here!</h1>
<div id = "thedate">
</div>
<script>
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
}
if(mm<10) {
mm='0'+mm
}
today = mm+'/'+dd+'/'+yyyy;
var todaydate = document.createElement("h2")
todaydate.innerHTML = today;
document.getElementById("thedate").appendChild(todaydate);
</script>
<h2>Download $playlist_name <a href = "$finalLink">here</a></h2>
<h2>Notice: This link will expire within 24 hours</h2>
<div class = "footer">
<img src="http://198.199.95.116/black.png" width="100px" style="display:block; opacity: 0.4; filter:alpha(opacity=50);">
<hr style="border-color: rgba(1,1,1, 0.1); width: 25%; border-width: 2px;">
<p style="display:block">This email was sent to <a href = "mailto:$email">$email</a> <br>If you have questions or complaints, please <a href = "mailto:[email protected]">contact us.</a></p>
</div>
</center>
</div>
<div class = "col-md-2">
</div>
</div>
</div>
</body>
</html>