summary refs log tree commit diff
path: root/assets/email_templates/phone_removed.html
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-01-20 09:18:37 -0500
committerPuyodead1 <puyodead@protonmail.com>2023-02-23 21:35:53 -0500
commitf337f2e785d7aebd52ae7bf30c5b67783d5dc23a (patch)
treee446f03beeb7ca7c624960cfed3e487ffccbb79c /assets/email_templates/phone_removed.html
parentUpdate schemas.json (diff)
downloadserver-f337f2e785d7aebd52ae7bf30c5b67783d5dc23a.tar.xz
Add other email templates
Diffstat (limited to 'assets/email_templates/phone_removed.html')
-rw-r--r--assets/email_templates/phone_removed.html64
1 files changed, 64 insertions, 0 deletions
diff --git a/assets/email_templates/phone_removed.html b/assets/email_templates/phone_removed.html
new file mode 100644
index 00000000..1eb52fbe
--- /dev/null
+++ b/assets/email_templates/phone_removed.html
@@ -0,0 +1,64 @@
+<!DOCTYPE html>
+<html lang="en">
+	<head>
+		<meta charset="UTF-8" />
+		<meta http-equiv="X-UA-Compatible" content="IE=edge" />
+		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+		<title>Phone Removed From {instanceName} Account</title>
+
+		<style>
+			* {
+				font-size: 16px;
+				line-height: 24px;
+			}
+			body {
+				color: white;
+				font-family: Arial, Helvetica, sans-serif;
+				background-color: #202225;
+			}
+		</style>
+	</head>
+	<body>
+		<img
+			src="https://raw.githubusercontent.com/fosscord/fosscord/master/assets-rebrand/svg/Fosscord-Wordmark-Orange.svg"
+			alt="Branding"
+			style="
+				width: 100%;
+				max-width: 200px;
+				margin: 0 auto;
+				display: block;
+				padding: 20px;
+			"
+		/>
+		<div
+			style="
+				width: 100%;
+				max-width: 500px;
+				margin: 0 auto;
+				padding: 40px 50px;
+				background-color: rgba(50, 53, 59, 1);
+				border-radius: 5px;
+			"
+		>
+			<p
+				style="
+					font-weight: 600;
+					font-size: 20px;
+					letter-spacing: 0.27px;
+					line-height: 24px;
+				"
+			>
+				Hey {username},
+			</p>
+			<p>
+				Your phone number ********{phoneNumber} was recently removed
+				from this account and added to a different {instanceName}
+				account.
+			</p>
+			<p>
+				Please note that your phone number can only be linked to one
+				{instanceName} account at a time.
+			</p>
+		</div>
+	</body>
+</html>