forked from Vincedream/NodeMail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.ejs
74 lines (67 loc) · 4.06 KB
/
email.ejs
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
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body style="margin:0;padding:0;">
<div style="width:100%; margin: 40px auto;font-size:20px; color:#5f5e5e;text-align:center">
<span>今天是我们在一起的第</span>
<span style="font-size:24px;color:rgb(221, 73, 73)" > <%= lastDay %> </span>
<span>天</span>
</div>
<div style="width:100%; margin: 0 auto;color:#5f5e5e;text-align:center">
<span style="display:block;color:#676767;font-size:20px"><%= weatherTip %></span>
<span style="display:block;margin-top:15px;color:#676767;font-size:15px">近期天气预报</span>
<% for(var j = 0; j<threeDaysData.length; j++) { %>
<div style="display: flex;margin-top:5px;height: 30px;line-height: 30px;justify-content: space-around;align-items: center;">
<span style="width:15%; text-align:center;"><%= threeDaysData[j].Day %></span>
<div style="width:25%; text-align:center;">
<img style="height:26px;vertical-align:middle;" src='<%= threeDaysData[j].WeatherImgUrl %>' alt="">
<span style="display:inline-block"><%= threeDaysData[j].WeatherText %></span>
</div>
<span style="width:25%; text-align:center;"><%= threeDaysData[j].Temperature %></span>
<% if (threeDaysData[j].PollutionLevel=='level_1') { %>
<div style="width:35%; ">
<span style="display:inline-block;padding:0 8px;line-height:25px;color:#8fc31f; border-radius:15px; text-align:center;"><%= threeDaysData[j].Pollution %></span>
</div>
<% } %>
<% if (threeDaysData[j].PollutionLevel=='level_2') { %>
<div style="width:35%; ">
<span style="display:inline-block;padding:0 8px;line-height:25px;color:#d7af0e; border-radius:15px; text-align:center;"><%= threeDaysData[j].Pollution %></span>
</div>
<% } %>
<% if (threeDaysData[j].PollutionLevel=='level_3') { %>
<div style="width:35%; ">
<span style="display:inline-block;padding:0 8px;line-height:25px;color:#f39800; border-radius:15px; text-align:center;"><%= threeDaysData[j].Pollution %></span>
</div>
<% } %>
<% if (threeDaysData[j].PollutionLevel=='level_4') { %>
<div style="width:35%; ">
<span style="display:inline-block;padding:0 8px;line-height:25px;color:#e2361a; border-radius:15px; text-align:center;"><%= threeDaysData[j].Pollution %></span>
</div>
<% } %>
<% if (threeDaysData[j].PollutionLevel=='level_5') { %>
<div style="width:35%; ">
<span style="display:inline-block;padding:0 8px;line-height:25px;color:#5f52a0; border-radius:15px; text-align:center;"><%= threeDaysData[j].Pollution %></span>
</div>
<% } %>
<% if (threeDaysData[j].PollutionLevel=='level_6') { %>
<div style="width:35%; ">
<span style="display:inline-block;padding:0 8px;line-height:25px;color:#631541; border-radius:15px; text-align:center;"><%= threeDaysData[j].Pollution %></span>
</div>
<% } %>
</div>
<% } %>
</div>
<div style="text-align:center;margin:35px 0;">
<span style="display:block;margin-top:55px;color:#676767;font-size:15px">ONE · 一个</span>
<span style="display:block;margin-top:25px;font-size:22px; color:#9d9d9d; "><%= todaystr %></span>
<img src="<%= todayOneData.imgUrl %>" style="width:100%;margin-top:10px;" alt="">
<span style="color:#b0b0b0;font-size:13px;"><%= todayOneData.type %></span>
<div style="margin:10px auto;width:85%;color:#5f5e5e;" ><%= todayOneData.text %></div>
</div>
</body>
</html>