-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathemail.html
More file actions
63 lines (63 loc) · 3.62 KB
/
email.html
File metadata and controls
63 lines (63 loc) · 3.62 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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="x-apple-disable-message-reformatting">
<title></title>
</head>
<body style="background:#F2F8FD;background-color:#F2F8FD;font-family:Overpass,sans-serif;line-height:25px;color:#030E17;margin:0;padding:0">
<div style="background:#F2F8FD;background-color:#F2F8FD;padding:1em;">
<div style="background:#F2F8FD;width:100%;max-width:600px;margin-left:auto;margin-right:auto;text-align:center;">
<div style="margin:50px 0 20px 0">
<img src="https://postguard.eu/pg_logo.png" alt="PostGuard" width="200" height="109" style="display:block;margin:0 auto;" />
</div>
<div style="background:#FFFFFF;padding:60px 50px;border-radius:8px;text-align:center;">
<p style="font-size:22px;font-weight:700;color:#030E17;margin:0 0 5px 0;line-height:30px;">
{{header}} {{subheader}}
</p>
<p style="font-size:14px;color:#5F7381;margin:15px 0 0 0;">
{{file_size}} - {{expires_str}} {{expiry_date}}
</p>
{% if html_content != "" %}
<div style="text-align:left;padding:20px 24px;margin:30px 0;font-size:14px;background: #F2F8FD;color:#030E17;line-height:22px;">
{{html_content}}
</div>
{% endif %}
<a href="{{url}}" style="display:inline-block;font-weight:600;margin:25px 0;max-width:350px;width:100%;background:#030E17;border:none;border-radius:6px;color:#ffffff;padding:14px 0;text-decoration:none;font-size:16px;">
{{download_str}}
</a>
<div style="text-align:left;padding-top:30px;">
<p style="color:#5F7381;font-size:16px;font-weight:600;margin:0 0 4px 0;">{{link_str}}</p>
<a style="color:#3095DE;font-size:13px;font-weight:400;line-height:18px;word-break:break-all;" href="{{url}}">
{{url}}
</a>
</div>
{% if confirm != "" %}
<div style="margin-top:30px;padding-top:20px;">
<div style="font-size:13px;color:#5F7381;">
{{confirm}}
</div>
</div>
{% endif %}
{% if sender_email != "" %}
<div style="margin-top:40px;padding-top:30px;border-top:1px solid #C6E2F6;text-align:center;">
<div style="margin-bottom:12px;">
<span style="display:inline-block;width:32px;height:32px;line-height:32px;border-radius:50%;border:2px solid #5F7381;text-align:center;font-size:16px;color:#5F7381;box-sizing:border-box;">✓</span>
</div>
<p style="font-size:13px;color:#5F7381;margin:0 0 6px 0;">{{files_from}}</p>
<p style="font-size:15px;font-weight:700;color:#030E17;margin:0 0 12px 0;">{{sender_email}}</p>
{% if !sender_attributes.is_empty() %}
<div style="text-align:center;">
{% for attr in sender_attributes %}
<span style="display:inline-block;border:1px solid #C6E2F6;border-radius:100px;padding:4px 14px;margin:3px 4px;font-size:12px;color:#5F7381;">{{attr.1}}</span>
{% endfor %}
</div>
{% endif %}
</div>
{% endif %}
</div>
<div style="height:40px;"></div>
</div>
</div>
</body>
</html>