-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
86 lines (78 loc) · 5.65 KB
/
terms.html
File metadata and controls
86 lines (78 loc) · 5.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - MailLayer</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css">
<style>
:root {
--burnt-tangerine: #e03616;
--black: #000000;
--white: #ffffff;
--text-dim: #9ca3af;
}
body {
background-color: var(--black);
color: var(--white);
font-family: 'Inter', -apple-system, sans-serif;
min-height: 100vh;
}
.content-box {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 24px;
padding: 4rem;
margin-top: 4rem;
margin-bottom: 4rem;
}
h1, h2, h3 { color: var(--white) !important; }
h1 { border-bottom: 2px solid var(--burnt-tangerine); padding-bottom: 1rem; margin-bottom: 2rem !important; }
a { color: var(--burnt-tangerine); }
a:hover { color: #ff4d2e; }
p { color: var(--text-dim); }
ul li { color: var(--text-dim); }
.back-link { display: inline-block; margin-bottom: 2rem; font-weight: 600; text-decoration: none; }
</style>
</head>
<body>
<nav class="navbar is-transparent" style="position: absolute; width: 100%; top: 0; left: 0; padding: 2rem; z-index: 10; background: transparent;">
<div class="container" style="display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;">
<a href="index.html" class="button is-dark is-rounded" style="background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; transition: all 0.2s;">Home</a>
<a href="privacy.html" class="button is-dark is-rounded" style="background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; transition: all 0.2s;">Privacy Policy</a>
<a href="terms.html" class="button is-dark is-rounded" style="background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; transition: all 0.2s;">Terms of Service</a>
<a href="https://chrome.google.com/webstore/detail/cdkbfdlipmopkdfjbceadindobfpajma" target="_blank" class="button is-primary is-rounded" style="background-color: var(--burnt-tangerine); border: none; font-weight: 700; box-shadow: 0 4px 15px rgba(224, 54, 22, 0.3);">Chrome Web Store</a>
</div>
</nav>
<section class="section" style="padding-top: 8rem;">
<div class="container" style="max-width: 800px;">
<div class="content-box content">
<h1>Terms of Service</h1>
<p><em>Last Updated: April 2026</em></p>
<h2>1. Acceptance of Terms</h2>
<p>By downloading, installing, or using the MailLayer Chrome Extension ("the Service"), you agree to be bound by these Terms of Service. If you do not agree to these terms, do not use the Service.</p>
<h2>2. Description of Service</h2>
<p>MailLayer is a browser extension that intercepts `mailto:` links and allows users to compose and send emails directly from their browser without navigating to a separate email client. It connects to third-party email providers via their respective APIs.</p>
<h2>3. User Responsibilities</h2>
<p>You are responsible for your use of the Service and for any content you send via the Service. You agree not to use the Service to:</p>
<ul>
<li>Send spam or unsolicited mass emails.</li>
<li>Transmit malicious software, viruses, or harmful code.</li>
<li>Violate any applicable local, state, national, or international law.</li>
<li>Infringe upon the rights of others, including intellectual property rights.</li>
</ul>
<h2>4. Third-Party Services</h2>
<p>The Service relies on third-party platforms (e.g., Google and Microsoft) to send emails. We are not responsible for the availability, uptime, or functionality of these third-party services. Your use of these services is subject to their respective terms and conditions.</p>
<h2>5. Disclaimer of Warranties</h2>
<p>The Service is provided on an "AS IS" and "AS AVAILABLE" basis. We disclaim all warranties, express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, and non-infringement. We do not warrant that the Service will be uninterrupted, error-free, or completely secure.</p>
<h2>6. Limitation of Liability</h2>
<p>To the maximum extent permitted by law, MailLayer and its creators shall not be liable for any indirect, incidental, special, consequential, or punitive damages, including loss of profits, data, or use, arising out of or related to your use of the Service.</p>
<h2>7. Changes to Terms</h2>
<p>We reserve the right to modify these Terms of Service at any time. We will indicate that changes have been made by updating the "Last Updated" date at the top of this document. Continued use of the Service after any changes constitutes your acceptance of the new terms.</p>
<h2>8. Governing Law</h2>
<p>These terms shall be governed by and construed in accordance with the laws of the jurisdiction in which the creator of MailLayer resides, without regard to its conflict of law provisions.</p>
</div>
</div>
</section>
</body>
</html>