summary refs log tree commit diff
path: root/assets/email_templates/phone_removed.html
blob: 1eb52fbe9f9679d16213e74c515939670cbdc1ff (plain) (blame)
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
<!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>