@company-semantics/contracts 35.0.0 → 36.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -2
- package/src/notifications/README.md +21 -19
- package/src/notifications/__tests__/README.md +42 -47
- package/src/notifications/__tests__/__snapshots__/README.md +15 -8
- package/src/notifications/__tests__/__snapshots__/registry.test.ts.snap +31 -0
- package/src/notifications/__tests__/__snapshots__/render-snapshot.test.ts.snap +2580 -215
- package/src/notifications/__tests__/context.test.ts +5 -5
- package/src/notifications/__tests__/definition.test.ts +2 -2
- package/src/notifications/__tests__/fixtures.ts +226 -0
- package/src/notifications/__tests__/kinds.test.ts +2 -3
- package/src/notifications/__tests__/registry.test.ts +27 -27
- package/src/notifications/__tests__/render-snapshot.test.ts +10 -6
- package/src/notifications/content.ts +13 -1
- package/src/notifications/index.ts +15 -9
- package/src/notifications/kinds/README.md +2 -2
- package/src/notifications/render.ts +6 -6
- package/src/notifications/renderers/email/README.md +132 -17
- package/src/notifications/renderers/email/__tests__/README.md +19 -16
- package/src/notifications/renderers/email/__tests__/amp.test.ts +217 -0
- package/src/notifications/renderers/email/__tests__/colors.test.ts +227 -0
- package/src/notifications/renderers/email/__tests__/render.test.ts +130 -36
- package/src/notifications/renderers/email/__tests__/styles.test.ts +111 -0
- package/src/notifications/renderers/email/chat.ts +44 -32
- package/src/notifications/renderers/email/colors.ts +342 -0
- package/src/notifications/renderers/email/constants.ts +27 -3
- package/src/notifications/renderers/email/cta.ts +60 -10
- package/src/notifications/renderers/email/index.ts +23 -8
- package/src/notifications/renderers/email/render.ts +31 -15
- package/src/notifications/renderers/email/shells.ts +115 -11
- package/src/notifications/renderers/email/styles.ts +361 -0
- package/src/notifications/renderers/slack/README.md +66 -25
- package/src/notifications/renderers/slack/__tests__/index.test.ts +249 -41
- package/src/notifications/renderers/slack/index.ts +192 -107
- package/src/notifications/text.ts +2 -2
- package/src/notifications/__tests__/output-parity.golden.ts +0 -363
- package/src/notifications/__tests__/output-parity.test.ts +0 -122
|
@@ -2,19 +2,113 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`email render > auth.otp · Default 1`] = `
|
|
4
4
|
{
|
|
5
|
+
"amp": "<!DOCTYPE html>
|
|
6
|
+
<html amp4email data-css-strict lang="en">
|
|
7
|
+
<head><meta charset="utf-8">
|
|
8
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
9
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
10
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
11
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
12
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
13
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
14
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
15
|
+
.csr-eom { color: #bbb; }
|
|
16
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
17
|
+
.csr-warning { color: #e7000b; }
|
|
18
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
19
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
20
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
21
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
22
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
23
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
24
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
25
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
26
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
27
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
28
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
29
|
+
.csr-cta-label { text-decoration: underline; }
|
|
30
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
31
|
+
.csr-cta-code { color: #0047FF; }
|
|
32
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
33
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
34
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
35
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
36
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
37
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
38
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
39
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
40
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
41
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
42
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
43
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
44
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
45
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
46
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
47
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
48
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
49
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
50
|
+
<body class="csr-body">
|
|
51
|
+
<div class="csr-frame">
|
|
52
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
53
|
+
<p class="csr-p-normal">A login code was requested.</p>
|
|
54
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
55
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
56
|
+
<tr>
|
|
57
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
58
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
59
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Copy + paste this code in the login form.</td></tr>
|
|
60
|
+
</table></td>
|
|
61
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
62
|
+
</tr>
|
|
63
|
+
</table>
|
|
64
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
65
|
+
<tr>
|
|
66
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
67
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta csr-cta-box-none">
|
|
68
|
+
<tr><td class="csr-cta-cell-code">
|
|
69
|
+
<span class="cs-link csr-cta-code">>> 123456 <<</span>
|
|
70
|
+
</td></tr>
|
|
71
|
+
</table></div></td>
|
|
72
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
73
|
+
</tr>
|
|
74
|
+
</table>
|
|
75
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
76
|
+
<p class="csr-p-tight">Status: Valid</p>
|
|
77
|
+
<p class="csr-p-normal">Expires in: 10 minutes</p>
|
|
78
|
+
<p class="csr-p-none">This login code was sent via Company Semantics.<br>If this wasn't you, no action is required.</p>
|
|
79
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
80
|
+
</div>
|
|
81
|
+
</body>
|
|
82
|
+
</html>",
|
|
5
83
|
"html": "<!DOCTYPE html>
|
|
6
84
|
<html lang="en">
|
|
7
|
-
<head><meta charset="UTF-8"
|
|
8
|
-
<
|
|
85
|
+
<head><meta charset="UTF-8">
|
|
86
|
+
<meta name="color-scheme" content="light dark">
|
|
87
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
88
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
89
|
+
@media (prefers-color-scheme: dark) {
|
|
90
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
91
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
92
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
93
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
94
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
95
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
96
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
97
|
+
.cs-link { color: #00ffff !important; }
|
|
98
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
99
|
+
}</style>
|
|
100
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
101
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
102
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
9
103
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
10
104
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
11
105
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login code was requested.</p>
|
|
12
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
106
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
13
107
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
14
108
|
<tr>
|
|
15
109
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
16
110
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
17
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>
|
|
111
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>
|
|
18
112
|
</table></td>
|
|
19
113
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
20
114
|
</tr>
|
|
@@ -22,19 +116,19 @@ exports[`email render > auth.otp · Default 1`] = `
|
|
|
22
116
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
23
117
|
<tr>
|
|
24
118
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
25
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
119
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
26
120
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
27
|
-
|
|
121
|
+
<span class="cs-link" style="color: #0047FF;">>> 123456 <<</span>
|
|
28
122
|
</td></tr>
|
|
29
123
|
</table></div></td>
|
|
30
124
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
31
125
|
</tr>
|
|
32
126
|
</table>
|
|
33
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
127
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
34
128
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Status: Valid</p>
|
|
35
129
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires in: 10 minutes</p>
|
|
36
130
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This login code was sent via Company Semantics.<br>If this wasn't you, no action is required.</p>
|
|
37
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
131
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
38
132
|
</div>
|
|
39
133
|
</body>
|
|
40
134
|
</html>",
|
|
@@ -71,19 +165,113 @@ https://companysemantics.ai
|
|
|
71
165
|
|
|
72
166
|
exports[`email render > auth.otp · Short expiry 1`] = `
|
|
73
167
|
{
|
|
168
|
+
"amp": "<!DOCTYPE html>
|
|
169
|
+
<html amp4email data-css-strict lang="en">
|
|
170
|
+
<head><meta charset="utf-8">
|
|
171
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
172
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
173
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
174
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
175
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
176
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
177
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
178
|
+
.csr-eom { color: #bbb; }
|
|
179
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
180
|
+
.csr-warning { color: #e7000b; }
|
|
181
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
182
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
183
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
184
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
185
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
186
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
187
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
188
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
189
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
190
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
191
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
192
|
+
.csr-cta-label { text-decoration: underline; }
|
|
193
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
194
|
+
.csr-cta-code { color: #0047FF; }
|
|
195
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
196
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
197
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
198
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
199
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
200
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
201
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
202
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
203
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
204
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
205
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
206
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
207
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
208
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
209
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
210
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
211
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
212
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
213
|
+
<body class="csr-body">
|
|
214
|
+
<div class="csr-frame">
|
|
215
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
216
|
+
<p class="csr-p-normal">A login code was requested.</p>
|
|
217
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
218
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
219
|
+
<tr>
|
|
220
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
221
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
222
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Copy + paste this code in the login form.</td></tr>
|
|
223
|
+
</table></td>
|
|
224
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
225
|
+
</tr>
|
|
226
|
+
</table>
|
|
227
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
228
|
+
<tr>
|
|
229
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
230
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta csr-cta-box-none">
|
|
231
|
+
<tr><td class="csr-cta-cell-code">
|
|
232
|
+
<span class="cs-link csr-cta-code">>> 902413 <<</span>
|
|
233
|
+
</td></tr>
|
|
234
|
+
</table></div></td>
|
|
235
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
236
|
+
</tr>
|
|
237
|
+
</table>
|
|
238
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
239
|
+
<p class="csr-p-tight">Status: Valid</p>
|
|
240
|
+
<p class="csr-p-normal">Expires in: 1 minute</p>
|
|
241
|
+
<p class="csr-p-none">This login code was sent via Company Semantics.<br>If this wasn't you, no action is required.</p>
|
|
242
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
243
|
+
</div>
|
|
244
|
+
</body>
|
|
245
|
+
</html>",
|
|
74
246
|
"html": "<!DOCTYPE html>
|
|
75
247
|
<html lang="en">
|
|
76
|
-
<head><meta charset="UTF-8"
|
|
77
|
-
<
|
|
248
|
+
<head><meta charset="UTF-8">
|
|
249
|
+
<meta name="color-scheme" content="light dark">
|
|
250
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
251
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
252
|
+
@media (prefers-color-scheme: dark) {
|
|
253
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
254
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
255
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
256
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
257
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
258
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
259
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
260
|
+
.cs-link { color: #00ffff !important; }
|
|
261
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
262
|
+
}</style>
|
|
263
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
264
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
265
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
78
266
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
79
267
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
80
268
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login code was requested.</p>
|
|
81
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
269
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
82
270
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
83
271
|
<tr>
|
|
84
272
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
85
273
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
86
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>
|
|
274
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>
|
|
87
275
|
</table></td>
|
|
88
276
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
89
277
|
</tr>
|
|
@@ -91,19 +279,19 @@ exports[`email render > auth.otp · Short expiry 1`] = `
|
|
|
91
279
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
92
280
|
<tr>
|
|
93
281
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
94
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
282
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
95
283
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
96
|
-
|
|
284
|
+
<span class="cs-link" style="color: #0047FF;">>> 902413 <<</span>
|
|
97
285
|
</td></tr>
|
|
98
286
|
</table></div></td>
|
|
99
287
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
100
288
|
</tr>
|
|
101
289
|
</table>
|
|
102
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
290
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
103
291
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Status: Valid</p>
|
|
104
292
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires in: 1 minute</p>
|
|
105
293
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This login code was sent via Company Semantics.<br>If this wasn't you, no action is required.</p>
|
|
106
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
294
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
107
295
|
</div>
|
|
108
296
|
</body>
|
|
109
297
|
</html>",
|
|
@@ -140,19 +328,116 @@ https://companysemantics.ai
|
|
|
140
328
|
|
|
141
329
|
exports[`email render > auth.otp · With request metadata 1`] = `
|
|
142
330
|
{
|
|
331
|
+
"amp": "<!DOCTYPE html>
|
|
332
|
+
<html amp4email data-css-strict lang="en">
|
|
333
|
+
<head><meta charset="utf-8">
|
|
334
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
335
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
336
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
337
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
338
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
339
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
340
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
341
|
+
.csr-eom { color: #bbb; }
|
|
342
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
343
|
+
.csr-warning { color: #e7000b; }
|
|
344
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
345
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
346
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
347
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
348
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
349
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
350
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
351
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
352
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
353
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
354
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
355
|
+
.csr-cta-label { text-decoration: underline; }
|
|
356
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
357
|
+
.csr-cta-code { color: #0047FF; }
|
|
358
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
359
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
360
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
361
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
362
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
363
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
364
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
365
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
366
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
367
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
368
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
369
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
370
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
371
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
372
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
373
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
374
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
375
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
376
|
+
<body class="csr-body">
|
|
377
|
+
<div class="csr-frame">
|
|
378
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
379
|
+
<p class="csr-p-normal">A login code was requested.</p>
|
|
380
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
381
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
382
|
+
<tr>
|
|
383
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
384
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
385
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Copy + paste this code in the login form.</td></tr>
|
|
386
|
+
</table></td>
|
|
387
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
388
|
+
</tr>
|
|
389
|
+
</table>
|
|
390
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
391
|
+
<tr>
|
|
392
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
393
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta csr-cta-box-none">
|
|
394
|
+
<tr><td class="csr-cta-cell-code">
|
|
395
|
+
<span class="cs-link csr-cta-code">>> 246810 <<</span>
|
|
396
|
+
</td></tr>
|
|
397
|
+
</table></div></td>
|
|
398
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
399
|
+
</tr>
|
|
400
|
+
</table>
|
|
401
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
402
|
+
<p class="csr-p-tight">Status: Valid</p>
|
|
403
|
+
<p class="csr-p-normal">Expires in: 5 minutes</p>
|
|
404
|
+
<p class="csr-p-tight">Request details:</p>
|
|
405
|
+
<p class="csr-p-tight">IP address: 203.0.113.4</p>
|
|
406
|
+
<p class="csr-p-normal">Device: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)</p>
|
|
407
|
+
<p class="csr-p-none">This login code was sent via Company Semantics.<br>If this wasn't you, no action is required.</p>
|
|
408
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
409
|
+
</div>
|
|
410
|
+
</body>
|
|
411
|
+
</html>",
|
|
143
412
|
"html": "<!DOCTYPE html>
|
|
144
413
|
<html lang="en">
|
|
145
|
-
<head><meta charset="UTF-8"
|
|
146
|
-
<
|
|
414
|
+
<head><meta charset="UTF-8">
|
|
415
|
+
<meta name="color-scheme" content="light dark">
|
|
416
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
417
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
418
|
+
@media (prefers-color-scheme: dark) {
|
|
419
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
420
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
421
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
422
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
423
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
424
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
425
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
426
|
+
.cs-link { color: #00ffff !important; }
|
|
427
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
428
|
+
}</style>
|
|
429
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
430
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
431
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
147
432
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
148
433
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
149
434
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login code was requested.</p>
|
|
150
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
435
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
151
436
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
152
437
|
<tr>
|
|
153
438
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
154
439
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
155
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>
|
|
440
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Copy + paste this code in the login form.</td></tr>
|
|
156
441
|
</table></td>
|
|
157
442
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
158
443
|
</tr>
|
|
@@ -160,22 +445,22 @@ exports[`email render > auth.otp · With request metadata 1`] = `
|
|
|
160
445
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
161
446
|
<tr>
|
|
162
447
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
163
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
448
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
164
449
|
<tr><td style="padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
165
|
-
|
|
450
|
+
<span class="cs-link" style="color: #0047FF;">>> 246810 <<</span>
|
|
166
451
|
</td></tr>
|
|
167
452
|
</table></div></td>
|
|
168
453
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
169
454
|
</tr>
|
|
170
455
|
</table>
|
|
171
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
456
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
172
457
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Status: Valid</p>
|
|
173
458
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires in: 5 minutes</p>
|
|
174
459
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Request details:</p>
|
|
175
460
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">IP address: 203.0.113.4</p>
|
|
176
461
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Device: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)</p>
|
|
177
462
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This login code was sent via Company Semantics.<br>If this wasn't you, no action is required.</p>
|
|
178
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
463
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
179
464
|
</div>
|
|
180
465
|
</body>
|
|
181
466
|
</html>",
|
|
@@ -216,25 +501,131 @@ https://companysemantics.ai
|
|
|
216
501
|
|
|
217
502
|
exports[`email render > chat.shared · Default 1`] = `
|
|
218
503
|
{
|
|
504
|
+
"amp": "<!DOCTYPE html>
|
|
505
|
+
<html amp4email data-css-strict lang="en">
|
|
506
|
+
<head><meta charset="utf-8">
|
|
507
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
508
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
509
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
510
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
511
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
512
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
513
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
514
|
+
.csr-eom { color: #bbb; }
|
|
515
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
516
|
+
.csr-warning { color: #e7000b; }
|
|
517
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
518
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
519
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
520
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
521
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
522
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
523
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
524
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
525
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
526
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
527
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
528
|
+
.csr-cta-label { text-decoration: underline; }
|
|
529
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
530
|
+
.csr-cta-code { color: #0047FF; }
|
|
531
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
532
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
533
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
534
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
535
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
536
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
537
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
538
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
539
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
540
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
541
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
542
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
543
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
544
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
545
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
546
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
547
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
548
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
549
|
+
<body class="csr-body">
|
|
550
|
+
<div class="csr-frame">
|
|
551
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
552
|
+
<p class="csr-p-normal">A chat was shared with you.</p>
|
|
553
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
554
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
555
|
+
<tr>
|
|
556
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
557
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
558
|
+
<tr><td class="cs-bubble csr-bubble-user">API design discussion</td></tr>
|
|
559
|
+
</table></td>
|
|
560
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
561
|
+
</tr>
|
|
562
|
+
<tr>
|
|
563
|
+
<td></td>
|
|
564
|
+
<td class="cs-meta csr-chat-attribution">Alex Rivera</td>
|
|
565
|
+
<td></td>
|
|
566
|
+
</tr>
|
|
567
|
+
</table>
|
|
568
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
569
|
+
<tr>
|
|
570
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
571
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
572
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Here are my thoughts on the REST API design for the new authentication endpoints.</td></tr>
|
|
573
|
+
</table></td>
|
|
574
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
575
|
+
</tr>
|
|
576
|
+
</table>
|
|
577
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
578
|
+
<tr>
|
|
579
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
580
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><div class="cs-dots csr-dots-over-cta">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
581
|
+
<tr><td class="csr-cta-cell-linked">
|
|
582
|
+
<a href="https://app.companysemantics.ai/share/abc123" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">SEE MORE</span> <<</a>
|
|
583
|
+
</td></tr>
|
|
584
|
+
</table></div></td>
|
|
585
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
586
|
+
</tr>
|
|
587
|
+
</table>
|
|
588
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
589
|
+
<p class="csr-p-none">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
590
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
591
|
+
</div>
|
|
592
|
+
</body>
|
|
593
|
+
</html>",
|
|
219
594
|
"html": "<!DOCTYPE html>
|
|
220
595
|
<html lang="en">
|
|
221
|
-
<head><meta charset="UTF-8"
|
|
222
|
-
<
|
|
596
|
+
<head><meta charset="UTF-8">
|
|
597
|
+
<meta name="color-scheme" content="light dark">
|
|
598
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
599
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
600
|
+
@media (prefers-color-scheme: dark) {
|
|
601
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
602
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
603
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
604
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
605
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
606
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
607
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
608
|
+
.cs-link { color: #00ffff !important; }
|
|
609
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
610
|
+
}</style>
|
|
611
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
612
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
613
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
223
614
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
224
615
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
225
616
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>
|
|
226
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
617
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
227
618
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
228
619
|
<tr>
|
|
229
620
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
230
621
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
231
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">API design discussion</td></tr>
|
|
622
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">API design discussion</td></tr>
|
|
232
623
|
</table></td>
|
|
233
624
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
234
625
|
</tr>
|
|
235
626
|
<tr>
|
|
236
627
|
<td></td>
|
|
237
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
628
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
238
629
|
<td></td>
|
|
239
630
|
</tr>
|
|
240
631
|
</table>
|
|
@@ -242,7 +633,7 @@ exports[`email render > chat.shared · Default 1`] = `
|
|
|
242
633
|
<tr>
|
|
243
634
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
244
635
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
245
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Here are my thoughts on the REST API design for the new authentication endpoints.</td></tr>
|
|
636
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Here are my thoughts on the REST API design for the new authentication endpoints.</td></tr>
|
|
246
637
|
</table></td>
|
|
247
638
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
248
639
|
</tr>
|
|
@@ -250,17 +641,17 @@ exports[`email render > chat.shared · Default 1`] = `
|
|
|
250
641
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
251
642
|
<tr>
|
|
252
643
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
253
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
254
|
-
<tr><td style="
|
|
255
|
-
<a href="https://app.companysemantics.ai/share/abc123" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
644
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div class="cs-dots" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
645
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
646
|
+
<a href="https://app.companysemantics.ai/share/abc123" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
256
647
|
</td></tr>
|
|
257
648
|
</table></div></td>
|
|
258
649
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
259
650
|
</tr>
|
|
260
651
|
</table>
|
|
261
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
652
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
262
653
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
263
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
654
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
264
655
|
</div>
|
|
265
656
|
</body>
|
|
266
657
|
</html>",
|
|
@@ -304,25 +695,131 @@ https://companysemantics.ai
|
|
|
304
695
|
|
|
305
696
|
exports[`email render > chat.shared · Long preview 1`] = `
|
|
306
697
|
{
|
|
698
|
+
"amp": "<!DOCTYPE html>
|
|
699
|
+
<html amp4email data-css-strict lang="en">
|
|
700
|
+
<head><meta charset="utf-8">
|
|
701
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
702
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
703
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
704
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
705
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
706
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
707
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
708
|
+
.csr-eom { color: #bbb; }
|
|
709
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
710
|
+
.csr-warning { color: #e7000b; }
|
|
711
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
712
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
713
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
714
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
715
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
716
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
717
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
718
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
719
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
720
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
721
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
722
|
+
.csr-cta-label { text-decoration: underline; }
|
|
723
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
724
|
+
.csr-cta-code { color: #0047FF; }
|
|
725
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
726
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
727
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
728
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
729
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
730
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
731
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
732
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
733
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
734
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
735
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
736
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
737
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
738
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
739
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
740
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
741
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
742
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
743
|
+
<body class="csr-body">
|
|
744
|
+
<div class="csr-frame">
|
|
745
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
746
|
+
<p class="csr-p-normal">A chat was shared with you.</p>
|
|
747
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
748
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
749
|
+
<tr>
|
|
750
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
751
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
752
|
+
<tr><td class="cs-bubble csr-bubble-user">Code review feedback</td></tr>
|
|
753
|
+
</table></td>
|
|
754
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
755
|
+
</tr>
|
|
756
|
+
<tr>
|
|
757
|
+
<td></td>
|
|
758
|
+
<td class="cs-meta csr-chat-attribution">Alex Rivera</td>
|
|
759
|
+
<td></td>
|
|
760
|
+
</tr>
|
|
761
|
+
</table>
|
|
762
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
763
|
+
<tr>
|
|
764
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
765
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
766
|
+
<tr><td class="cs-bubble csr-bubble-assistant">I reviewed the pull request and found several areas that need improvement. The authentication...</td></tr>
|
|
767
|
+
</table></td>
|
|
768
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
769
|
+
</tr>
|
|
770
|
+
</table>
|
|
771
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
772
|
+
<tr>
|
|
773
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
774
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><div class="cs-dots csr-dots-over-cta">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
775
|
+
<tr><td class="csr-cta-cell-linked">
|
|
776
|
+
<a href="https://app.companysemantics.ai/share/preview789" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">SEE MORE</span> <<</a>
|
|
777
|
+
</td></tr>
|
|
778
|
+
</table></div></td>
|
|
779
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
780
|
+
</tr>
|
|
781
|
+
</table>
|
|
782
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
783
|
+
<p class="csr-p-none">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
784
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
785
|
+
</div>
|
|
786
|
+
</body>
|
|
787
|
+
</html>",
|
|
307
788
|
"html": "<!DOCTYPE html>
|
|
308
789
|
<html lang="en">
|
|
309
|
-
<head><meta charset="UTF-8"
|
|
310
|
-
<
|
|
790
|
+
<head><meta charset="UTF-8">
|
|
791
|
+
<meta name="color-scheme" content="light dark">
|
|
792
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
793
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
794
|
+
@media (prefers-color-scheme: dark) {
|
|
795
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
796
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
797
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
798
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
799
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
800
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
801
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
802
|
+
.cs-link { color: #00ffff !important; }
|
|
803
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
804
|
+
}</style>
|
|
805
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
806
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
807
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
311
808
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
312
809
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
313
810
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>
|
|
314
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
811
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
315
812
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
316
813
|
<tr>
|
|
317
814
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
318
815
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
319
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Code review feedback</td></tr>
|
|
816
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Code review feedback</td></tr>
|
|
320
817
|
</table></td>
|
|
321
818
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
322
819
|
</tr>
|
|
323
820
|
<tr>
|
|
324
821
|
<td></td>
|
|
325
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
822
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
326
823
|
<td></td>
|
|
327
824
|
</tr>
|
|
328
825
|
</table>
|
|
@@ -330,7 +827,7 @@ exports[`email render > chat.shared · Long preview 1`] = `
|
|
|
330
827
|
<tr>
|
|
331
828
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
332
829
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
333
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">I reviewed the pull request and found several areas that need improvement. The authentication...</td></tr>
|
|
830
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">I reviewed the pull request and found several areas that need improvement. The authentication...</td></tr>
|
|
334
831
|
</table></td>
|
|
335
832
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
336
833
|
</tr>
|
|
@@ -338,17 +835,17 @@ exports[`email render > chat.shared · Long preview 1`] = `
|
|
|
338
835
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
339
836
|
<tr>
|
|
340
837
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
341
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
342
|
-
<tr><td style="
|
|
343
|
-
<a href="https://app.companysemantics.ai/share/preview789" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
838
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div class="cs-dots" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
839
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
840
|
+
<a href="https://app.companysemantics.ai/share/preview789" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
344
841
|
</td></tr>
|
|
345
842
|
</table></div></td>
|
|
346
843
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
347
844
|
</tr>
|
|
348
845
|
</table>
|
|
349
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
846
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
350
847
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
351
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
848
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
352
849
|
</div>
|
|
353
850
|
</body>
|
|
354
851
|
</html>",
|
|
@@ -392,25 +889,131 @@ https://companysemantics.ai
|
|
|
392
889
|
|
|
393
890
|
exports[`email render > chat.shared · Long title 1`] = `
|
|
394
891
|
{
|
|
892
|
+
"amp": "<!DOCTYPE html>
|
|
893
|
+
<html amp4email data-css-strict lang="en">
|
|
894
|
+
<head><meta charset="utf-8">
|
|
895
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
896
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
897
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
898
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
899
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
900
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
901
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
902
|
+
.csr-eom { color: #bbb; }
|
|
903
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
904
|
+
.csr-warning { color: #e7000b; }
|
|
905
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
906
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
907
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
908
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
909
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
910
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
911
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
912
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
913
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
914
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
915
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
916
|
+
.csr-cta-label { text-decoration: underline; }
|
|
917
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
918
|
+
.csr-cta-code { color: #0047FF; }
|
|
919
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
920
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
921
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
922
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
923
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
924
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
925
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
926
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
927
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
928
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
929
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
930
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
931
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
932
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
933
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
934
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
935
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
936
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
937
|
+
<body class="csr-body">
|
|
938
|
+
<div class="csr-frame">
|
|
939
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
940
|
+
<p class="csr-p-normal">A chat was shared with you.</p>
|
|
941
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
942
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
943
|
+
<tr>
|
|
944
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
945
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
946
|
+
<tr><td class="cs-bubble csr-bubble-user">This is a very long chat title that should be truncated to fit the layout properly</td></tr>
|
|
947
|
+
</table></td>
|
|
948
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
949
|
+
</tr>
|
|
950
|
+
<tr>
|
|
951
|
+
<td></td>
|
|
952
|
+
<td class="cs-meta csr-chat-attribution">Alex Rivera</td>
|
|
953
|
+
<td></td>
|
|
954
|
+
</tr>
|
|
955
|
+
</table>
|
|
956
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
957
|
+
<tr>
|
|
958
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
959
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
960
|
+
<tr><td class="cs-bubble csr-bubble-assistant">The assistant response preview text.</td></tr>
|
|
961
|
+
</table></td>
|
|
962
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
963
|
+
</tr>
|
|
964
|
+
</table>
|
|
965
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
966
|
+
<tr>
|
|
967
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
968
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><div class="cs-dots csr-dots-over-cta">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
969
|
+
<tr><td class="csr-cta-cell-linked">
|
|
970
|
+
<a href="https://app.companysemantics.ai/share/long456" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">SEE MORE</span> <<</a>
|
|
971
|
+
</td></tr>
|
|
972
|
+
</table></div></td>
|
|
973
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
974
|
+
</tr>
|
|
975
|
+
</table>
|
|
976
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
977
|
+
<p class="csr-p-none">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
978
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
979
|
+
</div>
|
|
980
|
+
</body>
|
|
981
|
+
</html>",
|
|
395
982
|
"html": "<!DOCTYPE html>
|
|
396
983
|
<html lang="en">
|
|
397
|
-
<head><meta charset="UTF-8"
|
|
398
|
-
<
|
|
984
|
+
<head><meta charset="UTF-8">
|
|
985
|
+
<meta name="color-scheme" content="light dark">
|
|
986
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
987
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
988
|
+
@media (prefers-color-scheme: dark) {
|
|
989
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
990
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
991
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
992
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
993
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
994
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
995
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
996
|
+
.cs-link { color: #00ffff !important; }
|
|
997
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
998
|
+
}</style>
|
|
999
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1000
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1001
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
399
1002
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
400
1003
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
401
1004
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>
|
|
402
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1005
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
403
1006
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
404
1007
|
<tr>
|
|
405
1008
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
406
1009
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
407
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">This is a very long chat title that should be truncated to fit the layout properly</td></tr>
|
|
1010
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">This is a very long chat title that should be truncated to fit the layout properly</td></tr>
|
|
408
1011
|
</table></td>
|
|
409
1012
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
410
1013
|
</tr>
|
|
411
1014
|
<tr>
|
|
412
1015
|
<td></td>
|
|
413
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
1016
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
414
1017
|
<td></td>
|
|
415
1018
|
</tr>
|
|
416
1019
|
</table>
|
|
@@ -418,7 +1021,7 @@ exports[`email render > chat.shared · Long title 1`] = `
|
|
|
418
1021
|
<tr>
|
|
419
1022
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
420
1023
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
421
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">The assistant response preview text.</td></tr>
|
|
1024
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">The assistant response preview text.</td></tr>
|
|
422
1025
|
</table></td>
|
|
423
1026
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
424
1027
|
</tr>
|
|
@@ -426,17 +1029,17 @@ exports[`email render > chat.shared · Long title 1`] = `
|
|
|
426
1029
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
427
1030
|
<tr>
|
|
428
1031
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
429
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
430
|
-
<tr><td style="
|
|
431
|
-
<a href="https://app.companysemantics.ai/share/long456" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
1032
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div class="cs-dots" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
1033
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
1034
|
+
<a href="https://app.companysemantics.ai/share/long456" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
432
1035
|
</td></tr>
|
|
433
1036
|
</table></div></td>
|
|
434
1037
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
435
1038
|
</tr>
|
|
436
1039
|
</table>
|
|
437
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1040
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
438
1041
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
439
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1042
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
440
1043
|
</div>
|
|
441
1044
|
</body>
|
|
442
1045
|
</html>",
|
|
@@ -480,42 +1083,139 @@ https://companysemantics.ai
|
|
|
480
1083
|
|
|
481
1084
|
exports[`email render > chat.shared · No preview 1`] = `
|
|
482
1085
|
{
|
|
1086
|
+
"amp": "<!DOCTYPE html>
|
|
1087
|
+
<html amp4email data-css-strict lang="en">
|
|
1088
|
+
<head><meta charset="utf-8">
|
|
1089
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
1090
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
1091
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
1092
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
1093
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
1094
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
1095
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
1096
|
+
.csr-eom { color: #bbb; }
|
|
1097
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
1098
|
+
.csr-warning { color: #e7000b; }
|
|
1099
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
1100
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
1101
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
1102
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
1103
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
1104
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
1105
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
1106
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
1107
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
1108
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1109
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1110
|
+
.csr-cta-label { text-decoration: underline; }
|
|
1111
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
1112
|
+
.csr-cta-code { color: #0047FF; }
|
|
1113
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
1114
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
1115
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
1116
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
1117
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
1118
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1119
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1120
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1121
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1122
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
1123
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
1124
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
1125
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1126
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1127
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
1128
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
1129
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
1130
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
1131
|
+
<body class="csr-body">
|
|
1132
|
+
<div class="csr-frame">
|
|
1133
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
1134
|
+
<p class="csr-p-normal">A chat was shared with you.</p>
|
|
1135
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
1136
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
1137
|
+
<tr>
|
|
1138
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1139
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
1140
|
+
<tr><td class="cs-bubble csr-bubble-user">Quick sync notes</td></tr>
|
|
1141
|
+
</table></td>
|
|
1142
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
1143
|
+
</tr>
|
|
1144
|
+
<tr>
|
|
1145
|
+
<td></td>
|
|
1146
|
+
<td class="cs-meta csr-chat-attribution">Alex Rivera</td>
|
|
1147
|
+
<td></td>
|
|
1148
|
+
</tr>
|
|
1149
|
+
</table>
|
|
1150
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
1151
|
+
<tr>
|
|
1152
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1153
|
+
<td class="csr-chat-channel-right"><div class="csr-cta-stack"><div class="cs-dots csr-dots-over-cta">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
1154
|
+
<tr><td class="csr-cta-cell-linked">
|
|
1155
|
+
<a href="https://app.companysemantics.ai/share/xyz789" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">SEE MORE</span> <<</a>
|
|
1156
|
+
</td></tr>
|
|
1157
|
+
</table></div></td>
|
|
1158
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1159
|
+
</tr>
|
|
1160
|
+
</table>
|
|
1161
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
1162
|
+
<p class="csr-p-none">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1163
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
1164
|
+
</div>
|
|
1165
|
+
</body>
|
|
1166
|
+
</html>",
|
|
483
1167
|
"html": "<!DOCTYPE html>
|
|
484
1168
|
<html lang="en">
|
|
485
|
-
<head><meta charset="UTF-8"
|
|
486
|
-
<
|
|
1169
|
+
<head><meta charset="UTF-8">
|
|
1170
|
+
<meta name="color-scheme" content="light dark">
|
|
1171
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
1172
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
1173
|
+
@media (prefers-color-scheme: dark) {
|
|
1174
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
1175
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
1176
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
1177
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
1178
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
1179
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
1180
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
1181
|
+
.cs-link { color: #00ffff !important; }
|
|
1182
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
1183
|
+
}</style>
|
|
1184
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1185
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1186
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
487
1187
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
488
1188
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
489
1189
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>
|
|
490
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1190
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
491
1191
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
492
1192
|
<tr>
|
|
493
1193
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
494
1194
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
495
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Quick sync notes</td></tr>
|
|
1195
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Quick sync notes</td></tr>
|
|
496
1196
|
</table></td>
|
|
497
1197
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
498
1198
|
</tr>
|
|
499
1199
|
<tr>
|
|
500
1200
|
<td></td>
|
|
501
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
1201
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
502
1202
|
<td></td>
|
|
503
1203
|
</tr>
|
|
504
1204
|
</table>
|
|
505
1205
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
506
1206
|
<tr>
|
|
507
1207
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
508
|
-
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><div style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
509
|
-
<tr><td style="
|
|
510
|
-
<a href="https://app.companysemantics.ai/share/xyz789" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
1208
|
+
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><div class="cs-dots" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
1209
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
1210
|
+
<a href="https://app.companysemantics.ai/share/xyz789" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
511
1211
|
</td></tr>
|
|
512
1212
|
</table></div></td>
|
|
513
1213
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
514
1214
|
</tr>
|
|
515
1215
|
</table>
|
|
516
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1216
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
517
1217
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
518
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1218
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
519
1219
|
</div>
|
|
520
1220
|
</body>
|
|
521
1221
|
</html>",
|
|
@@ -553,25 +1253,131 @@ https://companysemantics.ai
|
|
|
553
1253
|
|
|
554
1254
|
exports[`email render > chat.shared · Short 1`] = `
|
|
555
1255
|
{
|
|
1256
|
+
"amp": "<!DOCTYPE html>
|
|
1257
|
+
<html amp4email data-css-strict lang="en">
|
|
1258
|
+
<head><meta charset="utf-8">
|
|
1259
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
1260
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
1261
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
1262
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
1263
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
1264
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
1265
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
1266
|
+
.csr-eom { color: #bbb; }
|
|
1267
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
1268
|
+
.csr-warning { color: #e7000b; }
|
|
1269
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
1270
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
1271
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
1272
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
1273
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
1274
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
1275
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
1276
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
1277
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
1278
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1279
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1280
|
+
.csr-cta-label { text-decoration: underline; }
|
|
1281
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
1282
|
+
.csr-cta-code { color: #0047FF; }
|
|
1283
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
1284
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
1285
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
1286
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
1287
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
1288
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1289
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1290
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1291
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1292
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
1293
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
1294
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
1295
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1296
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1297
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
1298
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
1299
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
1300
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
1301
|
+
<body class="csr-body">
|
|
1302
|
+
<div class="csr-frame">
|
|
1303
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
1304
|
+
<p class="csr-p-normal">A chat was shared with you.</p>
|
|
1305
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
1306
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
1307
|
+
<tr>
|
|
1308
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1309
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
1310
|
+
<tr><td class="cs-bubble csr-bubble-user">Hi</td></tr>
|
|
1311
|
+
</table></td>
|
|
1312
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
1313
|
+
</tr>
|
|
1314
|
+
<tr>
|
|
1315
|
+
<td></td>
|
|
1316
|
+
<td class="cs-meta csr-chat-attribution">Alex Rivera</td>
|
|
1317
|
+
<td></td>
|
|
1318
|
+
</tr>
|
|
1319
|
+
</table>
|
|
1320
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
1321
|
+
<tr>
|
|
1322
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
1323
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
1324
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Hello!</td></tr>
|
|
1325
|
+
</table></td>
|
|
1326
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1327
|
+
</tr>
|
|
1328
|
+
</table>
|
|
1329
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
1330
|
+
<tr>
|
|
1331
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1332
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><div class="cs-dots csr-dots-over-cta">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
1333
|
+
<tr><td class="csr-cta-cell-linked">
|
|
1334
|
+
<a href="https://app.companysemantics.ai/share/short123" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">SEE MORE</span> <<</a>
|
|
1335
|
+
</td></tr>
|
|
1336
|
+
</table></div></td>
|
|
1337
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1338
|
+
</tr>
|
|
1339
|
+
</table>
|
|
1340
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
1341
|
+
<p class="csr-p-none">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1342
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
1343
|
+
</div>
|
|
1344
|
+
</body>
|
|
1345
|
+
</html>",
|
|
556
1346
|
"html": "<!DOCTYPE html>
|
|
557
1347
|
<html lang="en">
|
|
558
|
-
<head><meta charset="UTF-8"
|
|
559
|
-
<
|
|
1348
|
+
<head><meta charset="UTF-8">
|
|
1349
|
+
<meta name="color-scheme" content="light dark">
|
|
1350
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
1351
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
1352
|
+
@media (prefers-color-scheme: dark) {
|
|
1353
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
1354
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
1355
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
1356
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
1357
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
1358
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
1359
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
1360
|
+
.cs-link { color: #00ffff !important; }
|
|
1361
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
1362
|
+
}</style>
|
|
1363
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1364
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1365
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
560
1366
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
561
1367
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
562
1368
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A chat was shared with you.</p>
|
|
563
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1369
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
564
1370
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
565
1371
|
<tr>
|
|
566
1372
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
567
1373
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
568
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Hi</td></tr>
|
|
1374
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Hi</td></tr>
|
|
569
1375
|
</table></td>
|
|
570
1376
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
571
1377
|
</tr>
|
|
572
1378
|
<tr>
|
|
573
1379
|
<td></td>
|
|
574
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
1380
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Alex Rivera</td>
|
|
575
1381
|
<td></td>
|
|
576
1382
|
</tr>
|
|
577
1383
|
</table>
|
|
@@ -579,7 +1385,7 @@ exports[`email render > chat.shared · Short 1`] = `
|
|
|
579
1385
|
<tr>
|
|
580
1386
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
581
1387
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
582
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Hello!</td></tr>
|
|
1388
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Hello!</td></tr>
|
|
583
1389
|
</table></td>
|
|
584
1390
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
585
1391
|
</tr>
|
|
@@ -587,17 +1393,17 @@ exports[`email render > chat.shared · Short 1`] = `
|
|
|
587
1393
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
588
1394
|
<tr>
|
|
589
1395
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
590
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
591
|
-
<tr><td style="
|
|
592
|
-
<a href="https://app.companysemantics.ai/share/short123" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
1396
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><div class="cs-dots" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0;">⋮</div><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
1397
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
1398
|
+
<a href="https://app.companysemantics.ai/share/short123" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">SEE MORE</span> <<</a>
|
|
593
1399
|
</td></tr>
|
|
594
1400
|
</table></div></td>
|
|
595
1401
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
596
1402
|
</tr>
|
|
597
1403
|
</table>
|
|
598
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1404
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
599
1405
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This share was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
600
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1406
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
601
1407
|
</div>
|
|
602
1408
|
</body>
|
|
603
1409
|
</html>",
|
|
@@ -639,19 +1445,114 @@ https://companysemantics.ai
|
|
|
639
1445
|
|
|
640
1446
|
exports[`email render > companyMd.access_request_approved · Editor 1`] = `
|
|
641
1447
|
{
|
|
1448
|
+
"amp": "<!DOCTYPE html>
|
|
1449
|
+
<html amp4email data-css-strict lang="en">
|
|
1450
|
+
<head><meta charset="utf-8">
|
|
1451
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
1452
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
1453
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
1454
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
1455
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
1456
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
1457
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
1458
|
+
.csr-eom { color: #bbb; }
|
|
1459
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
1460
|
+
.csr-warning { color: #e7000b; }
|
|
1461
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
1462
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
1463
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
1464
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
1465
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
1466
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
1467
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
1468
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
1469
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
1470
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1471
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1472
|
+
.csr-cta-label { text-decoration: underline; }
|
|
1473
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
1474
|
+
.csr-cta-code { color: #0047FF; }
|
|
1475
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
1476
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
1477
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
1478
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
1479
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
1480
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1481
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1482
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1483
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1484
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
1485
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
1486
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
1487
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1488
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1489
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
1490
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
1491
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
1492
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
1493
|
+
<body class="csr-body">
|
|
1494
|
+
<div class="csr-frame">
|
|
1495
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
1496
|
+
<p class="csr-p-normal">Your access request was approved.</p>
|
|
1497
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
1498
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
1499
|
+
<tr>
|
|
1500
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
1501
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
1502
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Open to view.</td></tr>
|
|
1503
|
+
</table></td>
|
|
1504
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1505
|
+
</tr>
|
|
1506
|
+
</table>
|
|
1507
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
1508
|
+
<tr>
|
|
1509
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1510
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
1511
|
+
<tr><td class="csr-cta-cell-linked">
|
|
1512
|
+
<a href="https://app.companysemantics.ai/doc/handbook" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">OPEN</span> <<</a>
|
|
1513
|
+
</td></tr>
|
|
1514
|
+
</table></div></td>
|
|
1515
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1516
|
+
</tr>
|
|
1517
|
+
</table>
|
|
1518
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
1519
|
+
<p class="csr-p-tight">Document: "Engineering Handbook"</p>
|
|
1520
|
+
<p class="csr-p-tight">Access: can edit</p>
|
|
1521
|
+
<p class="csr-p-normal">Approved by: Jordan Lee</p>
|
|
1522
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>Access is now active.</p>
|
|
1523
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
1524
|
+
</div>
|
|
1525
|
+
</body>
|
|
1526
|
+
</html>",
|
|
642
1527
|
"html": "<!DOCTYPE html>
|
|
643
1528
|
<html lang="en">
|
|
644
|
-
<head><meta charset="UTF-8"
|
|
645
|
-
<
|
|
1529
|
+
<head><meta charset="UTF-8">
|
|
1530
|
+
<meta name="color-scheme" content="light dark">
|
|
1531
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
1532
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
1533
|
+
@media (prefers-color-scheme: dark) {
|
|
1534
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
1535
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
1536
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
1537
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
1538
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
1539
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
1540
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
1541
|
+
.cs-link { color: #00ffff !important; }
|
|
1542
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
1543
|
+
}</style>
|
|
1544
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1545
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1546
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
646
1547
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
647
1548
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
648
1549
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was approved.</p>
|
|
649
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1550
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
650
1551
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
651
1552
|
<tr>
|
|
652
1553
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
653
1554
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
654
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>
|
|
1555
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>
|
|
655
1556
|
</table></td>
|
|
656
1557
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
657
1558
|
</tr>
|
|
@@ -659,20 +1560,20 @@ exports[`email render > companyMd.access_request_approved · Editor 1`] = `
|
|
|
659
1560
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
660
1561
|
<tr>
|
|
661
1562
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
662
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
663
|
-
<tr><td style="
|
|
664
|
-
<a href="https://app.companysemantics.ai/doc/handbook" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
1563
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
1564
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
1565
|
+
<a href="https://app.companysemantics.ai/doc/handbook" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
665
1566
|
</td></tr>
|
|
666
1567
|
</table></div></td>
|
|
667
1568
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
668
1569
|
</tr>
|
|
669
1570
|
</table>
|
|
670
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1571
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
671
1572
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: "Engineering Handbook"</p>
|
|
672
1573
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Access: can edit</p>
|
|
673
1574
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Approved by: Jordan Lee</p>
|
|
674
1575
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>Access is now active.</p>
|
|
675
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1576
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
676
1577
|
</div>
|
|
677
1578
|
</body>
|
|
678
1579
|
</html>",
|
|
@@ -711,19 +1612,114 @@ https://companysemantics.ai
|
|
|
711
1612
|
|
|
712
1613
|
exports[`email render > companyMd.access_request_approved · Viewer 1`] = `
|
|
713
1614
|
{
|
|
1615
|
+
"amp": "<!DOCTYPE html>
|
|
1616
|
+
<html amp4email data-css-strict lang="en">
|
|
1617
|
+
<head><meta charset="utf-8">
|
|
1618
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
1619
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
1620
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
1621
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
1622
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
1623
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
1624
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
1625
|
+
.csr-eom { color: #bbb; }
|
|
1626
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
1627
|
+
.csr-warning { color: #e7000b; }
|
|
1628
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
1629
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
1630
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
1631
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
1632
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
1633
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
1634
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
1635
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
1636
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
1637
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1638
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1639
|
+
.csr-cta-label { text-decoration: underline; }
|
|
1640
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
1641
|
+
.csr-cta-code { color: #0047FF; }
|
|
1642
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
1643
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
1644
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
1645
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
1646
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
1647
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1648
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1649
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1650
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1651
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
1652
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
1653
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
1654
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1655
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1656
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
1657
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
1658
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
1659
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
1660
|
+
<body class="csr-body">
|
|
1661
|
+
<div class="csr-frame">
|
|
1662
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
1663
|
+
<p class="csr-p-normal">Your access request was approved.</p>
|
|
1664
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
1665
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
1666
|
+
<tr>
|
|
1667
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
1668
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
1669
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Open to view.</td></tr>
|
|
1670
|
+
</table></td>
|
|
1671
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1672
|
+
</tr>
|
|
1673
|
+
</table>
|
|
1674
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
1675
|
+
<tr>
|
|
1676
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1677
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
1678
|
+
<tr><td class="csr-cta-cell-linked">
|
|
1679
|
+
<a href="https://app.companysemantics.ai/doc/handbook" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">OPEN</span> <<</a>
|
|
1680
|
+
</td></tr>
|
|
1681
|
+
</table></div></td>
|
|
1682
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
1683
|
+
</tr>
|
|
1684
|
+
</table>
|
|
1685
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
1686
|
+
<p class="csr-p-tight">Document: "Engineering Handbook"</p>
|
|
1687
|
+
<p class="csr-p-tight">Access: can view</p>
|
|
1688
|
+
<p class="csr-p-normal">Approved by: Jordan Lee</p>
|
|
1689
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>Access is now active.</p>
|
|
1690
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
1691
|
+
</div>
|
|
1692
|
+
</body>
|
|
1693
|
+
</html>",
|
|
714
1694
|
"html": "<!DOCTYPE html>
|
|
715
1695
|
<html lang="en">
|
|
716
|
-
<head><meta charset="UTF-8"
|
|
717
|
-
<
|
|
1696
|
+
<head><meta charset="UTF-8">
|
|
1697
|
+
<meta name="color-scheme" content="light dark">
|
|
1698
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
1699
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
1700
|
+
@media (prefers-color-scheme: dark) {
|
|
1701
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
1702
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
1703
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
1704
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
1705
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
1706
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
1707
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
1708
|
+
.cs-link { color: #00ffff !important; }
|
|
1709
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
1710
|
+
}</style>
|
|
1711
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1712
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1713
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
718
1714
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
719
1715
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
720
1716
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was approved.</p>
|
|
721
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1717
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
722
1718
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
723
1719
|
<tr>
|
|
724
1720
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
725
1721
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
726
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>
|
|
1722
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>
|
|
727
1723
|
</table></td>
|
|
728
1724
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
729
1725
|
</tr>
|
|
@@ -731,20 +1727,20 @@ exports[`email render > companyMd.access_request_approved · Viewer 1`] = `
|
|
|
731
1727
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
732
1728
|
<tr>
|
|
733
1729
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
734
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
735
|
-
<tr><td style="
|
|
736
|
-
<a href="https://app.companysemantics.ai/doc/handbook" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
1730
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
1731
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
1732
|
+
<a href="https://app.companysemantics.ai/doc/handbook" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
737
1733
|
</td></tr>
|
|
738
1734
|
</table></div></td>
|
|
739
1735
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
740
1736
|
</tr>
|
|
741
1737
|
</table>
|
|
742
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1738
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
743
1739
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: "Engineering Handbook"</p>
|
|
744
1740
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Access: can view</p>
|
|
745
1741
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Approved by: Jordan Lee</p>
|
|
746
1742
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>Access is now active.</p>
|
|
747
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1743
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
748
1744
|
</div>
|
|
749
1745
|
</body>
|
|
750
1746
|
</html>",
|
|
@@ -783,17 +1779,89 @@ https://companysemantics.ai
|
|
|
783
1779
|
|
|
784
1780
|
exports[`email render > companyMd.access_request_denied · No reason 1`] = `
|
|
785
1781
|
{
|
|
1782
|
+
"amp": "<!DOCTYPE html>
|
|
1783
|
+
<html amp4email data-css-strict lang="en">
|
|
1784
|
+
<head><meta charset="utf-8">
|
|
1785
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
1786
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
1787
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
1788
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
1789
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
1790
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
1791
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
1792
|
+
.csr-eom { color: #bbb; }
|
|
1793
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
1794
|
+
.csr-warning { color: #e7000b; }
|
|
1795
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
1796
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
1797
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
1798
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
1799
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
1800
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
1801
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
1802
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
1803
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
1804
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1805
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1806
|
+
.csr-cta-label { text-decoration: underline; }
|
|
1807
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
1808
|
+
.csr-cta-code { color: #0047FF; }
|
|
1809
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
1810
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
1811
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
1812
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
1813
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
1814
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1815
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1816
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1817
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1818
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
1819
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
1820
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
1821
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1822
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1823
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
1824
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
1825
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
1826
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
1827
|
+
<body class="csr-body">
|
|
1828
|
+
<div class="csr-frame">
|
|
1829
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
1830
|
+
<p class="csr-p-normal">Your access request was declined.</p>
|
|
1831
|
+
<p class="csr-p-tight">Document: "Engineering Handbook"</p>
|
|
1832
|
+
<p class="csr-p-normal">Declined by: Jordan Lee</p>
|
|
1833
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>This request is now closed.</p>
|
|
1834
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
1835
|
+
</div>
|
|
1836
|
+
</body>
|
|
1837
|
+
</html>",
|
|
786
1838
|
"html": "<!DOCTYPE html>
|
|
787
1839
|
<html lang="en">
|
|
788
|
-
<head><meta charset="UTF-8"
|
|
789
|
-
<
|
|
1840
|
+
<head><meta charset="UTF-8">
|
|
1841
|
+
<meta name="color-scheme" content="light dark">
|
|
1842
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
1843
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
1844
|
+
@media (prefers-color-scheme: dark) {
|
|
1845
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
1846
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
1847
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
1848
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
1849
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
1850
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
1851
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
1852
|
+
.cs-link { color: #00ffff !important; }
|
|
1853
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
1854
|
+
}</style>
|
|
1855
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1856
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1857
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
790
1858
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
791
1859
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
792
1860
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was declined.</p>
|
|
793
1861
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: "Engineering Handbook"</p>
|
|
794
1862
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Declined by: Jordan Lee</p>
|
|
795
1863
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>This request is now closed.</p>
|
|
796
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1864
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
797
1865
|
</div>
|
|
798
1866
|
</body>
|
|
799
1867
|
</html>",
|
|
@@ -818,33 +1886,121 @@ https://companysemantics.ai
|
|
|
818
1886
|
|
|
819
1887
|
exports[`email render > companyMd.access_request_denied · With reason 1`] = `
|
|
820
1888
|
{
|
|
1889
|
+
"amp": "<!DOCTYPE html>
|
|
1890
|
+
<html amp4email data-css-strict lang="en">
|
|
1891
|
+
<head><meta charset="utf-8">
|
|
1892
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
1893
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
1894
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
1895
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
1896
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
1897
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
1898
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
1899
|
+
.csr-eom { color: #bbb; }
|
|
1900
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
1901
|
+
.csr-warning { color: #e7000b; }
|
|
1902
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
1903
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
1904
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
1905
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
1906
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
1907
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
1908
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
1909
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
1910
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
1911
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1912
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
1913
|
+
.csr-cta-label { text-decoration: underline; }
|
|
1914
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
1915
|
+
.csr-cta-code { color: #0047FF; }
|
|
1916
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
1917
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
1918
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
1919
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
1920
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
1921
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1922
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1923
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
1924
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
1925
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
1926
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
1927
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
1928
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1929
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
1930
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
1931
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
1932
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
1933
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
1934
|
+
<body class="csr-body">
|
|
1935
|
+
<div class="csr-frame">
|
|
1936
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
1937
|
+
<p class="csr-p-normal">Your access request was declined.</p>
|
|
1938
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
1939
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
1940
|
+
<tr>
|
|
1941
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
1942
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
1943
|
+
<tr><td class="cs-bubble csr-bubble-user">This doc is limited to the platform team for now.</td></tr>
|
|
1944
|
+
</table></td>
|
|
1945
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
1946
|
+
</tr>
|
|
1947
|
+
<tr>
|
|
1948
|
+
<td></td>
|
|
1949
|
+
<td class="cs-meta csr-chat-attribution">Jordan Lee</td>
|
|
1950
|
+
<td></td>
|
|
1951
|
+
</tr>
|
|
1952
|
+
</table>
|
|
1953
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
1954
|
+
<p class="csr-p-tight">Document: "Engineering Handbook"</p>
|
|
1955
|
+
<p class="csr-p-normal">Declined by: Jordan Lee</p>
|
|
1956
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>This request is now closed.</p>
|
|
1957
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
1958
|
+
</div>
|
|
1959
|
+
</body>
|
|
1960
|
+
</html>",
|
|
821
1961
|
"html": "<!DOCTYPE html>
|
|
822
1962
|
<html lang="en">
|
|
823
|
-
<head><meta charset="UTF-8"
|
|
824
|
-
<
|
|
1963
|
+
<head><meta charset="UTF-8">
|
|
1964
|
+
<meta name="color-scheme" content="light dark">
|
|
1965
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
1966
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
1967
|
+
@media (prefers-color-scheme: dark) {
|
|
1968
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
1969
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
1970
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
1971
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
1972
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
1973
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
1974
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
1975
|
+
.cs-link { color: #00ffff !important; }
|
|
1976
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
1977
|
+
}</style>
|
|
1978
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
1979
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
1980
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
825
1981
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
826
1982
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
827
1983
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Your access request was declined.</p>
|
|
828
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1984
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
829
1985
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
830
1986
|
<tr>
|
|
831
1987
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
832
1988
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
833
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">This doc is limited to the platform team for now.</td></tr>
|
|
1989
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">This doc is limited to the platform team for now.</td></tr>
|
|
834
1990
|
</table></td>
|
|
835
1991
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
836
1992
|
</tr>
|
|
837
1993
|
<tr>
|
|
838
1994
|
<td></td>
|
|
839
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
1995
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
840
1996
|
<td></td>
|
|
841
1997
|
</tr>
|
|
842
1998
|
</table>
|
|
843
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1999
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
844
2000
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Document: "Engineering Handbook"</p>
|
|
845
2001
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Declined by: Jordan Lee</p>
|
|
846
2002
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>This request is now closed.</p>
|
|
847
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
2003
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
848
2004
|
</div>
|
|
849
2005
|
</body>
|
|
850
2006
|
</html>",
|
|
@@ -878,19 +2034,113 @@ https://companysemantics.ai
|
|
|
878
2034
|
|
|
879
2035
|
exports[`email render > companyMd.access_requested · No message 1`] = `
|
|
880
2036
|
{
|
|
2037
|
+
"amp": "<!DOCTYPE html>
|
|
2038
|
+
<html amp4email data-css-strict lang="en">
|
|
2039
|
+
<head><meta charset="utf-8">
|
|
2040
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
2041
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
2042
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
2043
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
2044
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
2045
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
2046
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
2047
|
+
.csr-eom { color: #bbb; }
|
|
2048
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
2049
|
+
.csr-warning { color: #e7000b; }
|
|
2050
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
2051
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
2052
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
2053
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
2054
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
2055
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
2056
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
2057
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
2058
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
2059
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2060
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2061
|
+
.csr-cta-label { text-decoration: underline; }
|
|
2062
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
2063
|
+
.csr-cta-code { color: #0047FF; }
|
|
2064
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
2065
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
2066
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
2067
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
2068
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
2069
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2070
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2071
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2072
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2073
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
2074
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
2075
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
2076
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2077
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2078
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
2079
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
2080
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
2081
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
2082
|
+
<body class="csr-body">
|
|
2083
|
+
<div class="csr-frame">
|
|
2084
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
2085
|
+
<p class="csr-p-normal">Someone requested document access.</p>
|
|
2086
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
2087
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
2088
|
+
<tr>
|
|
2089
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
2090
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
2091
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Review the request.</td></tr>
|
|
2092
|
+
</table></td>
|
|
2093
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2094
|
+
</tr>
|
|
2095
|
+
</table>
|
|
2096
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
2097
|
+
<tr>
|
|
2098
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2099
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
2100
|
+
<tr><td class="csr-cta-cell-linked">
|
|
2101
|
+
<a href="https://app.companysemantics.ai/doc/handbook?request=req_456" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">REVIEW</span> <<</a>
|
|
2102
|
+
</td></tr>
|
|
2103
|
+
</table></div></td>
|
|
2104
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2105
|
+
</tr>
|
|
2106
|
+
</table>
|
|
2107
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
2108
|
+
<p class="csr-p-tight">From: Sam Chen</p>
|
|
2109
|
+
<p class="csr-p-normal">Document: "Engineering Handbook"</p>
|
|
2110
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>You own this document.</p>
|
|
2111
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
2112
|
+
</div>
|
|
2113
|
+
</body>
|
|
2114
|
+
</html>",
|
|
881
2115
|
"html": "<!DOCTYPE html>
|
|
882
2116
|
<html lang="en">
|
|
883
|
-
<head><meta charset="UTF-8"
|
|
884
|
-
<
|
|
2117
|
+
<head><meta charset="UTF-8">
|
|
2118
|
+
<meta name="color-scheme" content="light dark">
|
|
2119
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
2120
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
2121
|
+
@media (prefers-color-scheme: dark) {
|
|
2122
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
2123
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
2124
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
2125
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
2126
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
2127
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
2128
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
2129
|
+
.cs-link { color: #00ffff !important; }
|
|
2130
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
2131
|
+
}</style>
|
|
2132
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
2133
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
2134
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
885
2135
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
886
2136
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
887
2137
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Someone requested document access.</p>
|
|
888
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
2138
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
889
2139
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
890
2140
|
<tr>
|
|
891
2141
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
892
2142
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
893
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Review the request.</td></tr>
|
|
2143
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Review the request.</td></tr>
|
|
894
2144
|
</table></td>
|
|
895
2145
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
896
2146
|
</tr>
|
|
@@ -898,19 +2148,19 @@ exports[`email render > companyMd.access_requested · No message 1`] = `
|
|
|
898
2148
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
899
2149
|
<tr>
|
|
900
2150
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
901
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
902
|
-
<tr><td style="
|
|
903
|
-
<a href="https://app.companysemantics.ai/doc/handbook?request=req_456" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">REVIEW</span> <<</a>
|
|
2151
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
2152
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
2153
|
+
<a href="https://app.companysemantics.ai/doc/handbook?request=req_456" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">REVIEW</span> <<</a>
|
|
904
2154
|
</td></tr>
|
|
905
2155
|
</table></div></td>
|
|
906
2156
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
907
2157
|
</tr>
|
|
908
2158
|
</table>
|
|
909
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
2159
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
910
2160
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Sam Chen</p>
|
|
911
2161
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Document: "Engineering Handbook"</p>
|
|
912
2162
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>You own this document.</p>
|
|
913
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
2163
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
914
2164
|
</div>
|
|
915
2165
|
</body>
|
|
916
2166
|
</html>",
|
|
@@ -948,44 +2198,143 @@ https://companysemantics.ai
|
|
|
948
2198
|
|
|
949
2199
|
exports[`email render > companyMd.access_requested · With message 1`] = `
|
|
950
2200
|
{
|
|
2201
|
+
"amp": "<!DOCTYPE html>
|
|
2202
|
+
<html amp4email data-css-strict lang="en">
|
|
2203
|
+
<head><meta charset="utf-8">
|
|
2204
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
2205
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
2206
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
2207
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
2208
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
2209
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
2210
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
2211
|
+
.csr-eom { color: #bbb; }
|
|
2212
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
2213
|
+
.csr-warning { color: #e7000b; }
|
|
2214
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
2215
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
2216
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
2217
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
2218
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
2219
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
2220
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
2221
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
2222
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
2223
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2224
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2225
|
+
.csr-cta-label { text-decoration: underline; }
|
|
2226
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
2227
|
+
.csr-cta-code { color: #0047FF; }
|
|
2228
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
2229
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
2230
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
2231
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
2232
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
2233
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2234
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2235
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2236
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2237
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
2238
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
2239
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
2240
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2241
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2242
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
2243
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
2244
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
2245
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
2246
|
+
<body class="csr-body">
|
|
2247
|
+
<div class="csr-frame">
|
|
2248
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
2249
|
+
<p class="csr-p-normal">Someone requested document access.</p>
|
|
2250
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
2251
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
2252
|
+
<tr>
|
|
2253
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2254
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
2255
|
+
<tr><td class="cs-bubble csr-bubble-user">I'd like to contribute the onboarding section.</td></tr>
|
|
2256
|
+
</table></td>
|
|
2257
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
2258
|
+
</tr>
|
|
2259
|
+
<tr>
|
|
2260
|
+
<td></td>
|
|
2261
|
+
<td class="cs-meta csr-chat-attribution">Sam Chen</td>
|
|
2262
|
+
<td></td>
|
|
2263
|
+
</tr>
|
|
2264
|
+
</table>
|
|
2265
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
2266
|
+
<tr>
|
|
2267
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2268
|
+
<td class="csr-chat-channel-right"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
2269
|
+
<tr><td class="csr-cta-cell-linked">
|
|
2270
|
+
<a href="https://app.companysemantics.ai/doc/handbook?request=req_123" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">REVIEW</span> <<</a>
|
|
2271
|
+
</td></tr>
|
|
2272
|
+
</table></div></td>
|
|
2273
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2274
|
+
</tr>
|
|
2275
|
+
</table>
|
|
2276
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
2277
|
+
<p class="csr-p-tight">From: Sam Chen</p>
|
|
2278
|
+
<p class="csr-p-normal">Document: "Engineering Handbook"</p>
|
|
2279
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>You own this document.</p>
|
|
2280
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
2281
|
+
</div>
|
|
2282
|
+
</body>
|
|
2283
|
+
</html>",
|
|
951
2284
|
"html": "<!DOCTYPE html>
|
|
952
2285
|
<html lang="en">
|
|
953
|
-
<head><meta charset="UTF-8"
|
|
954
|
-
<
|
|
2286
|
+
<head><meta charset="UTF-8">
|
|
2287
|
+
<meta name="color-scheme" content="light dark">
|
|
2288
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
2289
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
2290
|
+
@media (prefers-color-scheme: dark) {
|
|
2291
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
2292
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
2293
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
2294
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
2295
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
2296
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
2297
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
2298
|
+
.cs-link { color: #00ffff !important; }
|
|
2299
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
2300
|
+
}</style>
|
|
2301
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
2302
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
2303
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
955
2304
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
956
2305
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
957
2306
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Someone requested document access.</p>
|
|
958
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
2307
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
959
2308
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
960
2309
|
<tr>
|
|
961
2310
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
962
2311
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
963
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">I'd like to contribute the onboarding section.</td></tr>
|
|
2312
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">I'd like to contribute the onboarding section.</td></tr>
|
|
964
2313
|
</table></td>
|
|
965
2314
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
966
2315
|
</tr>
|
|
967
2316
|
<tr>
|
|
968
2317
|
<td></td>
|
|
969
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Sam Chen</td>
|
|
2318
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Sam Chen</td>
|
|
970
2319
|
<td></td>
|
|
971
2320
|
</tr>
|
|
972
2321
|
</table>
|
|
973
2322
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
974
2323
|
<tr>
|
|
975
2324
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
976
|
-
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
977
|
-
<tr><td style="
|
|
978
|
-
<a href="https://app.companysemantics.ai/doc/handbook?request=req_123" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">REVIEW</span> <<</a>
|
|
2325
|
+
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
2326
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
2327
|
+
<a href="https://app.companysemantics.ai/doc/handbook?request=req_123" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">REVIEW</span> <<</a>
|
|
979
2328
|
</td></tr>
|
|
980
2329
|
</table></div></td>
|
|
981
2330
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
982
2331
|
</tr>
|
|
983
2332
|
</table>
|
|
984
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
2333
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
985
2334
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Sam Chen</p>
|
|
986
2335
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Document: "Engineering Handbook"</p>
|
|
987
2336
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>You own this document.</p>
|
|
988
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
2337
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
989
2338
|
</div>
|
|
990
2339
|
</body>
|
|
991
2340
|
</html>",
|
|
@@ -1025,19 +2374,115 @@ https://companysemantics.ai
|
|
|
1025
2374
|
|
|
1026
2375
|
exports[`email render > org.invite · Admin 1`] = `
|
|
1027
2376
|
{
|
|
2377
|
+
"amp": "<!DOCTYPE html>
|
|
2378
|
+
<html amp4email data-css-strict lang="en">
|
|
2379
|
+
<head><meta charset="utf-8">
|
|
2380
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
2381
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
2382
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
2383
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
2384
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
2385
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
2386
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
2387
|
+
.csr-eom { color: #bbb; }
|
|
2388
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
2389
|
+
.csr-warning { color: #e7000b; }
|
|
2390
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
2391
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
2392
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
2393
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
2394
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
2395
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
2396
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
2397
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
2398
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
2399
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2400
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2401
|
+
.csr-cta-label { text-decoration: underline; }
|
|
2402
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
2403
|
+
.csr-cta-code { color: #0047FF; }
|
|
2404
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
2405
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
2406
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
2407
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
2408
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
2409
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2410
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2411
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2412
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2413
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
2414
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
2415
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
2416
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2417
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2418
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
2419
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
2420
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
2421
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
2422
|
+
<body class="csr-body">
|
|
2423
|
+
<div class="csr-frame">
|
|
2424
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
2425
|
+
<p class="csr-p-normal">Acme Corp uses Company Semantics.</p>
|
|
2426
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
2427
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
2428
|
+
<tr>
|
|
2429
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
2430
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
2431
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Join to accept the invitation.</td></tr>
|
|
2432
|
+
</table></td>
|
|
2433
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2434
|
+
</tr>
|
|
2435
|
+
</table>
|
|
2436
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
2437
|
+
<tr>
|
|
2438
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2439
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
2440
|
+
<tr><td class="csr-cta-cell-linked">
|
|
2441
|
+
<a href="https://app.companysemantics.ai/invite/abc123" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">JOIN</span> <<</a>
|
|
2442
|
+
</td></tr>
|
|
2443
|
+
</table></div></td>
|
|
2444
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2445
|
+
</tr>
|
|
2446
|
+
</table>
|
|
2447
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
2448
|
+
<p class="csr-p-tight">From: Alex Rivera</p>
|
|
2449
|
+
<p class="csr-p-tight">Workspace: Acme Corp</p>
|
|
2450
|
+
<p class="csr-p-tight">Role: Admin</p>
|
|
2451
|
+
<p class="csr-p-normal">Expires: Jun 13, 2026</p>
|
|
2452
|
+
<p class="csr-p-none">This invitation was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
2453
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
2454
|
+
</div>
|
|
2455
|
+
</body>
|
|
2456
|
+
</html>",
|
|
1028
2457
|
"html": "<!DOCTYPE html>
|
|
1029
2458
|
<html lang="en">
|
|
1030
|
-
<head><meta charset="UTF-8"
|
|
1031
|
-
<
|
|
2459
|
+
<head><meta charset="UTF-8">
|
|
2460
|
+
<meta name="color-scheme" content="light dark">
|
|
2461
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
2462
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
2463
|
+
@media (prefers-color-scheme: dark) {
|
|
2464
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
2465
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
2466
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
2467
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
2468
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
2469
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
2470
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
2471
|
+
.cs-link { color: #00ffff !important; }
|
|
2472
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
2473
|
+
}</style>
|
|
2474
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
2475
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
2476
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1032
2477
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1033
2478
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1034
2479
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Acme Corp uses Company Semantics.</p>
|
|
1035
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
2480
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1036
2481
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1037
2482
|
<tr>
|
|
1038
2483
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1039
2484
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1040
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Join to accept the invitation.</td></tr>
|
|
2485
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Join to accept the invitation.</td></tr>
|
|
1041
2486
|
</table></td>
|
|
1042
2487
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1043
2488
|
</tr>
|
|
@@ -1045,21 +2490,21 @@ exports[`email render > org.invite · Admin 1`] = `
|
|
|
1045
2490
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1046
2491
|
<tr>
|
|
1047
2492
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1048
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1049
|
-
<tr><td style="
|
|
1050
|
-
<a href="https://app.companysemantics.ai/invite/abc123" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">JOIN</span> <<</a>
|
|
2493
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
2494
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
2495
|
+
<a href="https://app.companysemantics.ai/invite/abc123" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">JOIN</span> <<</a>
|
|
1051
2496
|
</td></tr>
|
|
1052
2497
|
</table></div></td>
|
|
1053
2498
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1054
2499
|
</tr>
|
|
1055
2500
|
</table>
|
|
1056
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
2501
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1057
2502
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Alex Rivera</p>
|
|
1058
2503
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>
|
|
1059
2504
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Role: Admin</p>
|
|
1060
2505
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>
|
|
1061
2506
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This invitation was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1062
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
2507
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1063
2508
|
</div>
|
|
1064
2509
|
</body>
|
|
1065
2510
|
</html>",
|
|
@@ -1099,19 +2544,115 @@ https://companysemantics.ai
|
|
|
1099
2544
|
|
|
1100
2545
|
exports[`email render > org.invite · Member 1`] = `
|
|
1101
2546
|
{
|
|
2547
|
+
"amp": "<!DOCTYPE html>
|
|
2548
|
+
<html amp4email data-css-strict lang="en">
|
|
2549
|
+
<head><meta charset="utf-8">
|
|
2550
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
2551
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
2552
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
2553
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
2554
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
2555
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
2556
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
2557
|
+
.csr-eom { color: #bbb; }
|
|
2558
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
2559
|
+
.csr-warning { color: #e7000b; }
|
|
2560
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
2561
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
2562
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
2563
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
2564
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
2565
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
2566
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
2567
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
2568
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
2569
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2570
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2571
|
+
.csr-cta-label { text-decoration: underline; }
|
|
2572
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
2573
|
+
.csr-cta-code { color: #0047FF; }
|
|
2574
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
2575
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
2576
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
2577
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
2578
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
2579
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2580
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2581
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2582
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2583
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
2584
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
2585
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
2586
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2587
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2588
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
2589
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
2590
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
2591
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
2592
|
+
<body class="csr-body">
|
|
2593
|
+
<div class="csr-frame">
|
|
2594
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
2595
|
+
<p class="csr-p-normal">Acme Corp uses Company Semantics.</p>
|
|
2596
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
2597
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
2598
|
+
<tr>
|
|
2599
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
2600
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
2601
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Join to accept the invitation.</td></tr>
|
|
2602
|
+
</table></td>
|
|
2603
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2604
|
+
</tr>
|
|
2605
|
+
</table>
|
|
2606
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
2607
|
+
<tr>
|
|
2608
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2609
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
2610
|
+
<tr><td class="csr-cta-cell-linked">
|
|
2611
|
+
<a href="https://app.companysemantics.ai/invite/def456" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">JOIN</span> <<</a>
|
|
2612
|
+
</td></tr>
|
|
2613
|
+
</table></div></td>
|
|
2614
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2615
|
+
</tr>
|
|
2616
|
+
</table>
|
|
2617
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
2618
|
+
<p class="csr-p-tight">From: Alex Rivera</p>
|
|
2619
|
+
<p class="csr-p-tight">Workspace: Acme Corp</p>
|
|
2620
|
+
<p class="csr-p-tight">Role: Member</p>
|
|
2621
|
+
<p class="csr-p-normal">Expires: Jun 13, 2026</p>
|
|
2622
|
+
<p class="csr-p-none">This invitation was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
2623
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
2624
|
+
</div>
|
|
2625
|
+
</body>
|
|
2626
|
+
</html>",
|
|
1102
2627
|
"html": "<!DOCTYPE html>
|
|
1103
2628
|
<html lang="en">
|
|
1104
|
-
<head><meta charset="UTF-8"
|
|
1105
|
-
<
|
|
2629
|
+
<head><meta charset="UTF-8">
|
|
2630
|
+
<meta name="color-scheme" content="light dark">
|
|
2631
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
2632
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
2633
|
+
@media (prefers-color-scheme: dark) {
|
|
2634
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
2635
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
2636
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
2637
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
2638
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
2639
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
2640
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
2641
|
+
.cs-link { color: #00ffff !important; }
|
|
2642
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
2643
|
+
}</style>
|
|
2644
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
2645
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
2646
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1106
2647
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1107
2648
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1108
2649
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Acme Corp uses Company Semantics.</p>
|
|
1109
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
2650
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1110
2651
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1111
2652
|
<tr>
|
|
1112
2653
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1113
2654
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1114
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Join to accept the invitation.</td></tr>
|
|
2655
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Join to accept the invitation.</td></tr>
|
|
1115
2656
|
</table></td>
|
|
1116
2657
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1117
2658
|
</tr>
|
|
@@ -1119,21 +2660,21 @@ exports[`email render > org.invite · Member 1`] = `
|
|
|
1119
2660
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1120
2661
|
<tr>
|
|
1121
2662
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1122
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1123
|
-
<tr><td style="
|
|
1124
|
-
<a href="https://app.companysemantics.ai/invite/def456" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">JOIN</span> <<</a>
|
|
2663
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
2664
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
2665
|
+
<a href="https://app.companysemantics.ai/invite/def456" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">JOIN</span> <<</a>
|
|
1125
2666
|
</td></tr>
|
|
1126
2667
|
</table></div></td>
|
|
1127
2668
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1128
2669
|
</tr>
|
|
1129
2670
|
</table>
|
|
1130
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
2671
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1131
2672
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Alex Rivera</p>
|
|
1132
2673
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>
|
|
1133
2674
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Role: Member</p>
|
|
1134
2675
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>
|
|
1135
2676
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This invitation was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1136
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
2677
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1137
2678
|
</div>
|
|
1138
2679
|
</body>
|
|
1139
2680
|
</html>",
|
|
@@ -1173,19 +2714,113 @@ https://companysemantics.ai
|
|
|
1173
2714
|
|
|
1174
2715
|
exports[`email render > org.ownership_transfer · No note (admin) 1`] = `
|
|
1175
2716
|
{
|
|
2717
|
+
"amp": "<!DOCTYPE html>
|
|
2718
|
+
<html amp4email data-css-strict lang="en">
|
|
2719
|
+
<head><meta charset="utf-8">
|
|
2720
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
2721
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
2722
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
2723
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
2724
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
2725
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
2726
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
2727
|
+
.csr-eom { color: #bbb; }
|
|
2728
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
2729
|
+
.csr-warning { color: #e7000b; }
|
|
2730
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
2731
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
2732
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
2733
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
2734
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
2735
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
2736
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
2737
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
2738
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
2739
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2740
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2741
|
+
.csr-cta-label { text-decoration: underline; }
|
|
2742
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
2743
|
+
.csr-cta-code { color: #0047FF; }
|
|
2744
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
2745
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
2746
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
2747
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
2748
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
2749
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2750
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2751
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2752
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2753
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
2754
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
2755
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
2756
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2757
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2758
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
2759
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
2760
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
2761
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
2762
|
+
<body class="csr-body">
|
|
2763
|
+
<div class="csr-frame">
|
|
2764
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
2765
|
+
<p class="csr-p-normal">You've been invited to take ownership.</p>
|
|
2766
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
2767
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
2768
|
+
<tr>
|
|
2769
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
2770
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
2771
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Accept to take ownership.</td></tr>
|
|
2772
|
+
</table></td>
|
|
2773
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2774
|
+
</tr>
|
|
2775
|
+
</table>
|
|
2776
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
2777
|
+
<tr>
|
|
2778
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2779
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
2780
|
+
<tr><td class="csr-cta-cell-linked">
|
|
2781
|
+
<a href="https://app.companysemantics.ai/owner-transfer/accept/tok456" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">ACCEPT</span> <<</a>
|
|
2782
|
+
</td></tr>
|
|
2783
|
+
</table></div></td>
|
|
2784
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2785
|
+
</tr>
|
|
2786
|
+
</table>
|
|
2787
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
2788
|
+
<p class="csr-p-tight">Workspace: Acme Corp</p>
|
|
2789
|
+
<p class="csr-p-normal">Expires: Jun 13, 2026</p>
|
|
2790
|
+
<p class="csr-p-none">This transfer was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
2791
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
2792
|
+
</div>
|
|
2793
|
+
</body>
|
|
2794
|
+
</html>",
|
|
1176
2795
|
"html": "<!DOCTYPE html>
|
|
1177
2796
|
<html lang="en">
|
|
1178
|
-
<head><meta charset="UTF-8"
|
|
1179
|
-
<
|
|
2797
|
+
<head><meta charset="UTF-8">
|
|
2798
|
+
<meta name="color-scheme" content="light dark">
|
|
2799
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
2800
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
2801
|
+
@media (prefers-color-scheme: dark) {
|
|
2802
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
2803
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
2804
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
2805
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
2806
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
2807
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
2808
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
2809
|
+
.cs-link { color: #00ffff !important; }
|
|
2810
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
2811
|
+
}</style>
|
|
2812
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
2813
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
2814
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1180
2815
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1181
2816
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1182
2817
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You've been invited to take ownership.</p>
|
|
1183
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
2818
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1184
2819
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1185
2820
|
<tr>
|
|
1186
2821
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1187
2822
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1188
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Accept to take ownership.</td></tr>
|
|
2823
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Accept to take ownership.</td></tr>
|
|
1189
2824
|
</table></td>
|
|
1190
2825
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1191
2826
|
</tr>
|
|
@@ -1193,19 +2828,19 @@ exports[`email render > org.ownership_transfer · No note (admin) 1`] = `
|
|
|
1193
2828
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1194
2829
|
<tr>
|
|
1195
2830
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1196
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1197
|
-
<tr><td style="
|
|
1198
|
-
<a href="https://app.companysemantics.ai/owner-transfer/accept/tok456" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">ACCEPT</span> <<</a>
|
|
2831
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
2832
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
2833
|
+
<a href="https://app.companysemantics.ai/owner-transfer/accept/tok456" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">ACCEPT</span> <<</a>
|
|
1199
2834
|
</td></tr>
|
|
1200
2835
|
</table></div></td>
|
|
1201
2836
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1202
2837
|
</tr>
|
|
1203
2838
|
</table>
|
|
1204
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
2839
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1205
2840
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>
|
|
1206
2841
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>
|
|
1207
2842
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This transfer was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1208
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
2843
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1209
2844
|
</div>
|
|
1210
2845
|
</body>
|
|
1211
2846
|
</html>",
|
|
@@ -1243,45 +2878,145 @@ https://companysemantics.ai
|
|
|
1243
2878
|
|
|
1244
2879
|
exports[`email render > org.ownership_transfer · With note + from 1`] = `
|
|
1245
2880
|
{
|
|
2881
|
+
"amp": "<!DOCTYPE html>
|
|
2882
|
+
<html amp4email data-css-strict lang="en">
|
|
2883
|
+
<head><meta charset="utf-8">
|
|
2884
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
2885
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
2886
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
2887
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
2888
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
2889
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
2890
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
2891
|
+
.csr-eom { color: #bbb; }
|
|
2892
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
2893
|
+
.csr-warning { color: #e7000b; }
|
|
2894
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
2895
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
2896
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
2897
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
2898
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
2899
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
2900
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
2901
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
2902
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
2903
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2904
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
2905
|
+
.csr-cta-label { text-decoration: underline; }
|
|
2906
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
2907
|
+
.csr-cta-code { color: #0047FF; }
|
|
2908
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
2909
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
2910
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
2911
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
2912
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
2913
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2914
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2915
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
2916
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
2917
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
2918
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
2919
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
2920
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2921
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
2922
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
2923
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
2924
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
2925
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
2926
|
+
<body class="csr-body">
|
|
2927
|
+
<div class="csr-frame">
|
|
2928
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
2929
|
+
<p class="csr-p-normal">You've been invited to take ownership.</p>
|
|
2930
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
2931
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
2932
|
+
<tr>
|
|
2933
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2934
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
2935
|
+
<tr><td class="cs-bubble csr-bubble-user">Handing this over as I move to an advisory role.</td></tr>
|
|
2936
|
+
</table></td>
|
|
2937
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
2938
|
+
</tr>
|
|
2939
|
+
<tr>
|
|
2940
|
+
<td></td>
|
|
2941
|
+
<td class="cs-meta csr-chat-attribution">Jordan Lee</td>
|
|
2942
|
+
<td></td>
|
|
2943
|
+
</tr>
|
|
2944
|
+
</table>
|
|
2945
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
2946
|
+
<tr>
|
|
2947
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
2948
|
+
<td class="csr-chat-channel-right"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
2949
|
+
<tr><td class="csr-cta-cell-linked">
|
|
2950
|
+
<a href="https://app.companysemantics.ai/owner-transfer/accept/tok123" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">ACCEPT</span> <<</a>
|
|
2951
|
+
</td></tr>
|
|
2952
|
+
</table></div></td>
|
|
2953
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
2954
|
+
</tr>
|
|
2955
|
+
</table>
|
|
2956
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
2957
|
+
<p class="csr-p-tight">From: Jordan Lee</p>
|
|
2958
|
+
<p class="csr-p-tight">Workspace: Acme Corp</p>
|
|
2959
|
+
<p class="csr-p-normal">Expires: Jun 13, 2026</p>
|
|
2960
|
+
<p class="csr-p-none">This transfer was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
2961
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
2962
|
+
</div>
|
|
2963
|
+
</body>
|
|
2964
|
+
</html>",
|
|
1246
2965
|
"html": "<!DOCTYPE html>
|
|
1247
2966
|
<html lang="en">
|
|
1248
|
-
<head><meta charset="UTF-8"
|
|
1249
|
-
<
|
|
2967
|
+
<head><meta charset="UTF-8">
|
|
2968
|
+
<meta name="color-scheme" content="light dark">
|
|
2969
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
2970
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
2971
|
+
@media (prefers-color-scheme: dark) {
|
|
2972
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
2973
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
2974
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
2975
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
2976
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
2977
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
2978
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
2979
|
+
.cs-link { color: #00ffff !important; }
|
|
2980
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
2981
|
+
}</style>
|
|
2982
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
2983
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
2984
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1250
2985
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1251
2986
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1252
2987
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You've been invited to take ownership.</p>
|
|
1253
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
2988
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1254
2989
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1255
2990
|
<tr>
|
|
1256
2991
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1257
2992
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1258
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Handing this over as I move to an advisory role.</td></tr>
|
|
2993
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Handing this over as I move to an advisory role.</td></tr>
|
|
1259
2994
|
</table></td>
|
|
1260
2995
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1261
2996
|
</tr>
|
|
1262
2997
|
<tr>
|
|
1263
2998
|
<td></td>
|
|
1264
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
2999
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
1265
3000
|
<td></td>
|
|
1266
3001
|
</tr>
|
|
1267
3002
|
</table>
|
|
1268
3003
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1269
3004
|
<tr>
|
|
1270
3005
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1271
|
-
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1272
|
-
<tr><td style="
|
|
1273
|
-
<a href="https://app.companysemantics.ai/owner-transfer/accept/tok123" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">ACCEPT</span> <<</a>
|
|
3006
|
+
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
3007
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
3008
|
+
<a href="https://app.companysemantics.ai/owner-transfer/accept/tok123" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">ACCEPT</span> <<</a>
|
|
1274
3009
|
</td></tr>
|
|
1275
3010
|
</table></div></td>
|
|
1276
3011
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1277
3012
|
</tr>
|
|
1278
3013
|
</table>
|
|
1279
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
3014
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1280
3015
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>
|
|
1281
3016
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>
|
|
1282
3017
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>
|
|
1283
3018
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This transfer was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1284
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3019
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1285
3020
|
</div>
|
|
1286
3021
|
</body>
|
|
1287
3022
|
</html>",
|
|
@@ -1322,28 +3057,111 @@ https://companysemantics.ai
|
|
|
1322
3057
|
|
|
1323
3058
|
exports[`email render > org.ownership_transfer_completed · Default 1`] = `
|
|
1324
3059
|
{
|
|
3060
|
+
"amp": "<!DOCTYPE html>
|
|
3061
|
+
<html amp4email data-css-strict lang="en">
|
|
3062
|
+
<head><meta charset="utf-8">
|
|
3063
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3064
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3065
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3066
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3067
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3068
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3069
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3070
|
+
.csr-eom { color: #bbb; }
|
|
3071
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3072
|
+
.csr-warning { color: #e7000b; }
|
|
3073
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3074
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3075
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3076
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3077
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3078
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3079
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3080
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3081
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3082
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3083
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3084
|
+
.csr-cta-label { text-decoration: underline; }
|
|
3085
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
3086
|
+
.csr-cta-code { color: #0047FF; }
|
|
3087
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
3088
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
3089
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
3090
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
3091
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
3092
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3093
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3094
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3095
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3096
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
3097
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
3098
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
3099
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3100
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3101
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
3102
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
3103
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
3104
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
3105
|
+
<body class="csr-body">
|
|
3106
|
+
<div class="csr-frame">
|
|
3107
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
3108
|
+
<p class="csr-p-normal">Ownership was transferred.</p>
|
|
3109
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
3110
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
3111
|
+
<tr>
|
|
3112
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
3113
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
3114
|
+
<tr><td class="cs-bubble csr-bubble-assistant">You're no longer the owner, but you remain an admin.</td></tr>
|
|
3115
|
+
</table></td>
|
|
3116
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
3117
|
+
</tr>
|
|
3118
|
+
</table>
|
|
3119
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
3120
|
+
<p class="csr-p-tight">Workspace: Acme Corp</p>
|
|
3121
|
+
<p class="csr-p-normal">New owner: new.owner@acme.com</p>
|
|
3122
|
+
<p class="csr-p-none">This confirmation was sent via Company Semantics.<br>If you did not authorize this, contact support immediately.</p>
|
|
3123
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
3124
|
+
</div>
|
|
3125
|
+
</body>
|
|
3126
|
+
</html>",
|
|
1325
3127
|
"html": "<!DOCTYPE html>
|
|
1326
3128
|
<html lang="en">
|
|
1327
|
-
<head><meta charset="UTF-8"
|
|
1328
|
-
<
|
|
3129
|
+
<head><meta charset="UTF-8">
|
|
3130
|
+
<meta name="color-scheme" content="light dark">
|
|
3131
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
3132
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
3133
|
+
@media (prefers-color-scheme: dark) {
|
|
3134
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
3135
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
3136
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
3137
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
3138
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
3139
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
3140
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
3141
|
+
.cs-link { color: #00ffff !important; }
|
|
3142
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
3143
|
+
}</style>
|
|
3144
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
3145
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
3146
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1329
3147
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1330
3148
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1331
3149
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Ownership was transferred.</p>
|
|
1332
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
3150
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1333
3151
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1334
3152
|
<tr>
|
|
1335
3153
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1336
3154
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1337
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">You're no longer the owner, but you remain an admin.</td></tr>
|
|
3155
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">You're no longer the owner, but you remain an admin.</td></tr>
|
|
1338
3156
|
</table></td>
|
|
1339
3157
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1340
3158
|
</tr>
|
|
1341
3159
|
</table>
|
|
1342
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
3160
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1343
3161
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Workspace: Acme Corp</p>
|
|
1344
3162
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">New owner: new.owner@acme.com</p>
|
|
1345
3163
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This confirmation was sent via Company Semantics.<br>If you did not authorize this, contact support immediately.</p>
|
|
1346
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3164
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1347
3165
|
</div>
|
|
1348
3166
|
</body>
|
|
1349
3167
|
</html>",
|
|
@@ -1376,19 +3194,115 @@ https://companysemantics.ai
|
|
|
1376
3194
|
|
|
1377
3195
|
exports[`email render > org.unit_owner_granted · Delegate with expiry 1`] = `
|
|
1378
3196
|
{
|
|
3197
|
+
"amp": "<!DOCTYPE html>
|
|
3198
|
+
<html amp4email data-css-strict lang="en">
|
|
3199
|
+
<head><meta charset="utf-8">
|
|
3200
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3201
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3202
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3203
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3204
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3205
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3206
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3207
|
+
.csr-eom { color: #bbb; }
|
|
3208
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3209
|
+
.csr-warning { color: #e7000b; }
|
|
3210
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3211
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3212
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3213
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3214
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3215
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3216
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3217
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3218
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3219
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3220
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3221
|
+
.csr-cta-label { text-decoration: underline; }
|
|
3222
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
3223
|
+
.csr-cta-code { color: #0047FF; }
|
|
3224
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
3225
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
3226
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
3227
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
3228
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
3229
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3230
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3231
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3232
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3233
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
3234
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
3235
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
3236
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3237
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3238
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
3239
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
3240
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
3241
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
3242
|
+
<body class="csr-body">
|
|
3243
|
+
<div class="csr-frame">
|
|
3244
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
3245
|
+
<p class="csr-p-normal">You are now a delegate owner of Platform Engineering. Delegate owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.</p>
|
|
3246
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
3247
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
3248
|
+
<tr>
|
|
3249
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
3250
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
3251
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Open the team to get started.</td></tr>
|
|
3252
|
+
</table></td>
|
|
3253
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
3254
|
+
</tr>
|
|
3255
|
+
</table>
|
|
3256
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
3257
|
+
<tr>
|
|
3258
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
3259
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
3260
|
+
<tr><td class="csr-cta-cell-linked">
|
|
3261
|
+
<a href="https://app.companysemantics.ai/org/unit/42" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">MANAGE TEAM</span> <<</a>
|
|
3262
|
+
</td></tr>
|
|
3263
|
+
</table></div></td>
|
|
3264
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
3265
|
+
</tr>
|
|
3266
|
+
</table>
|
|
3267
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
3268
|
+
<p class="csr-p-tight">From: Jordan Lee</p>
|
|
3269
|
+
<p class="csr-p-tight">Team: Platform Engineering</p>
|
|
3270
|
+
<p class="csr-p-tight">Role: Delegate</p>
|
|
3271
|
+
<p class="csr-p-normal">Expires: Jun 13, 2026</p>
|
|
3272
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
3273
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
3274
|
+
</div>
|
|
3275
|
+
</body>
|
|
3276
|
+
</html>",
|
|
1379
3277
|
"html": "<!DOCTYPE html>
|
|
1380
3278
|
<html lang="en">
|
|
1381
|
-
<head><meta charset="UTF-8"
|
|
1382
|
-
<
|
|
3279
|
+
<head><meta charset="UTF-8">
|
|
3280
|
+
<meta name="color-scheme" content="light dark">
|
|
3281
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
3282
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
3283
|
+
@media (prefers-color-scheme: dark) {
|
|
3284
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
3285
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
3286
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
3287
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
3288
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
3289
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
3290
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
3291
|
+
.cs-link { color: #00ffff !important; }
|
|
3292
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
3293
|
+
}</style>
|
|
3294
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
3295
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
3296
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1383
3297
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1384
3298
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1385
3299
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You are now a delegate owner of Platform Engineering. Delegate owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.</p>
|
|
1386
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
3300
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1387
3301
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1388
3302
|
<tr>
|
|
1389
3303
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1390
3304
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1391
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open the team to get started.</td></tr>
|
|
3305
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open the team to get started.</td></tr>
|
|
1392
3306
|
</table></td>
|
|
1393
3307
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1394
3308
|
</tr>
|
|
@@ -1396,21 +3310,21 @@ exports[`email render > org.unit_owner_granted · Delegate with expiry 1`] = `
|
|
|
1396
3310
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1397
3311
|
<tr>
|
|
1398
3312
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1399
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1400
|
-
<tr><td style="
|
|
1401
|
-
<a href="https://app.companysemantics.ai/org/unit/42" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">MANAGE TEAM</span> <<</a>
|
|
3313
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
3314
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
3315
|
+
<a href="https://app.companysemantics.ai/org/unit/42" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">MANAGE TEAM</span> <<</a>
|
|
1402
3316
|
</td></tr>
|
|
1403
3317
|
</table></div></td>
|
|
1404
3318
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1405
3319
|
</tr>
|
|
1406
3320
|
</table>
|
|
1407
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
3321
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1408
3322
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>
|
|
1409
3323
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Team: Platform Engineering</p>
|
|
1410
3324
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Role: Delegate</p>
|
|
1411
3325
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Expires: Jun 13, 2026</p>
|
|
1412
3326
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1413
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3327
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1414
3328
|
</div>
|
|
1415
3329
|
</body>
|
|
1416
3330
|
</html>",
|
|
@@ -1450,25 +3364,134 @@ https://companysemantics.ai
|
|
|
1450
3364
|
|
|
1451
3365
|
exports[`email render > org.unit_owner_granted · Unit owner + message 1`] = `
|
|
1452
3366
|
{
|
|
3367
|
+
"amp": "<!DOCTYPE html>
|
|
3368
|
+
<html amp4email data-css-strict lang="en">
|
|
3369
|
+
<head><meta charset="utf-8">
|
|
3370
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3371
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3372
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3373
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3374
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3375
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3376
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3377
|
+
.csr-eom { color: #bbb; }
|
|
3378
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3379
|
+
.csr-warning { color: #e7000b; }
|
|
3380
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3381
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3382
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3383
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3384
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3385
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3386
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3387
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3388
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3389
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3390
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3391
|
+
.csr-cta-label { text-decoration: underline; }
|
|
3392
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
3393
|
+
.csr-cta-code { color: #0047FF; }
|
|
3394
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
3395
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
3396
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
3397
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
3398
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
3399
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3400
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3401
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3402
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3403
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
3404
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
3405
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
3406
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3407
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3408
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
3409
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
3410
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
3411
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
3412
|
+
<body class="csr-body">
|
|
3413
|
+
<div class="csr-frame">
|
|
3414
|
+
<p class="csr-p-normal">Hi Sam Chen,</p>
|
|
3415
|
+
<p class="csr-p-normal">You are now a unit owner of Platform Engineering. Unit owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.</p>
|
|
3416
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
3417
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
3418
|
+
<tr>
|
|
3419
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
3420
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
3421
|
+
<tr><td class="cs-bubble csr-bubble-user">Welcome aboard — glad to have you owning this team.</td></tr>
|
|
3422
|
+
</table></td>
|
|
3423
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
3424
|
+
</tr>
|
|
3425
|
+
<tr>
|
|
3426
|
+
<td></td>
|
|
3427
|
+
<td class="cs-meta csr-chat-attribution">Jordan Lee</td>
|
|
3428
|
+
<td></td>
|
|
3429
|
+
</tr>
|
|
3430
|
+
</table>
|
|
3431
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
3432
|
+
<tr>
|
|
3433
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
3434
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
3435
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Open the team to get started.</td></tr>
|
|
3436
|
+
</table></td>
|
|
3437
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
3438
|
+
</tr>
|
|
3439
|
+
</table>
|
|
3440
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
3441
|
+
<tr>
|
|
3442
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
3443
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
3444
|
+
<tr><td class="csr-cta-cell-linked">
|
|
3445
|
+
<a href="https://app.companysemantics.ai/org/unit/42" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">MANAGE TEAM</span> <<</a>
|
|
3446
|
+
</td></tr>
|
|
3447
|
+
</table></div></td>
|
|
3448
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
3449
|
+
</tr>
|
|
3450
|
+
</table>
|
|
3451
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
3452
|
+
<p class="csr-p-tight">From: Jordan Lee</p>
|
|
3453
|
+
<p class="csr-p-tight">Team: Platform Engineering</p>
|
|
3454
|
+
<p class="csr-p-normal">Role: Unit Owner</p>
|
|
3455
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
3456
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
3457
|
+
</div>
|
|
3458
|
+
</body>
|
|
3459
|
+
</html>",
|
|
1453
3460
|
"html": "<!DOCTYPE html>
|
|
1454
3461
|
<html lang="en">
|
|
1455
|
-
<head><meta charset="UTF-8"
|
|
1456
|
-
<
|
|
3462
|
+
<head><meta charset="UTF-8">
|
|
3463
|
+
<meta name="color-scheme" content="light dark">
|
|
3464
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
3465
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
3466
|
+
@media (prefers-color-scheme: dark) {
|
|
3467
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
3468
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
3469
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
3470
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
3471
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
3472
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
3473
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
3474
|
+
.cs-link { color: #00ffff !important; }
|
|
3475
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
3476
|
+
}</style>
|
|
3477
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
3478
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
3479
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1457
3480
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1458
3481
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi Sam Chen,</p>
|
|
1459
3482
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">You are now a unit owner of Platform Engineering. Unit owners hold authority over the team: managing team membership, doc access, strategy, and execution against goals.</p>
|
|
1460
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
3483
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1461
3484
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1462
3485
|
<tr>
|
|
1463
3486
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1464
3487
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1465
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Welcome aboard — glad to have you owning this team.</td></tr>
|
|
3488
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Welcome aboard — glad to have you owning this team.</td></tr>
|
|
1466
3489
|
</table></td>
|
|
1467
3490
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1468
3491
|
</tr>
|
|
1469
3492
|
<tr>
|
|
1470
3493
|
<td></td>
|
|
1471
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
3494
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
1472
3495
|
<td></td>
|
|
1473
3496
|
</tr>
|
|
1474
3497
|
</table>
|
|
@@ -1476,7 +3499,7 @@ exports[`email render > org.unit_owner_granted · Unit owner + message 1`] = `
|
|
|
1476
3499
|
<tr>
|
|
1477
3500
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1478
3501
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1479
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open the team to get started.</td></tr>
|
|
3502
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open the team to get started.</td></tr>
|
|
1480
3503
|
</table></td>
|
|
1481
3504
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1482
3505
|
</tr>
|
|
@@ -1484,20 +3507,20 @@ exports[`email render > org.unit_owner_granted · Unit owner + message 1`] = `
|
|
|
1484
3507
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1485
3508
|
<tr>
|
|
1486
3509
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1487
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1488
|
-
<tr><td style="
|
|
1489
|
-
<a href="https://app.companysemantics.ai/org/unit/42" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">MANAGE TEAM</span> <<</a>
|
|
3510
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
3511
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
3512
|
+
<a href="https://app.companysemantics.ai/org/unit/42" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">MANAGE TEAM</span> <<</a>
|
|
1490
3513
|
</td></tr>
|
|
1491
3514
|
</table></div></td>
|
|
1492
3515
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1493
3516
|
</tr>
|
|
1494
3517
|
</table>
|
|
1495
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
3518
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1496
3519
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>
|
|
1497
3520
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Team: Platform Engineering</p>
|
|
1498
3521
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Role: Unit Owner</p>
|
|
1499
3522
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1500
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3523
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1501
3524
|
</div>
|
|
1502
3525
|
</body>
|
|
1503
3526
|
</html>",
|
|
@@ -1542,19 +3565,93 @@ https://companysemantics.ai
|
|
|
1542
3565
|
|
|
1543
3566
|
exports[`email render > security.alert · Excessive OTP requests 1`] = `
|
|
1544
3567
|
{
|
|
3568
|
+
"amp": "<!DOCTYPE html>
|
|
3569
|
+
<html amp4email data-css-strict lang="en">
|
|
3570
|
+
<head><meta charset="utf-8">
|
|
3571
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3572
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3573
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3574
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3575
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3576
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3577
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3578
|
+
.csr-eom { color: #bbb; }
|
|
3579
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3580
|
+
.csr-warning { color: #e7000b; }
|
|
3581
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3582
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3583
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3584
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3585
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3586
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3587
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3588
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3589
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3590
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3591
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3592
|
+
.csr-cta-label { text-decoration: underline; }
|
|
3593
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
3594
|
+
.csr-cta-code { color: #0047FF; }
|
|
3595
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
3596
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
3597
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
3598
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
3599
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
3600
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3601
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3602
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3603
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3604
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
3605
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
3606
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
3607
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3608
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3609
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
3610
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
3611
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
3612
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
3613
|
+
<body class="csr-body">
|
|
3614
|
+
<div class="csr-frame">
|
|
3615
|
+
<p class="csr-p-normal"><span class="cs-destructive csr-warning">🆆🅰🆁🅽🅸🅽🅶</span></p>
|
|
3616
|
+
<p class="csr-p-normal">Unusual login-code activity detected.</p>
|
|
3617
|
+
<p class="csr-p-normal">Details: 12 login codes requested in 5 minutes</p>
|
|
3618
|
+
<p class="csr-p-tight">If this was you, no action is needed.</p>
|
|
3619
|
+
<p class="csr-p-normal">If you didn't request these codes, someone may be trying to access your account.</p>
|
|
3620
|
+
<p class="csr-p-normal">We recommend reviewing your account security.</p>
|
|
3621
|
+
<p class="csr-p-none">Time: Sun, 12 Jul 2026 14:30:00 GMT</p>
|
|
3622
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
3623
|
+
</div>
|
|
3624
|
+
</body>
|
|
3625
|
+
</html>",
|
|
1545
3626
|
"html": "<!DOCTYPE html>
|
|
1546
3627
|
<html lang="en">
|
|
1547
|
-
<head><meta charset="UTF-8"
|
|
1548
|
-
<
|
|
3628
|
+
<head><meta charset="UTF-8">
|
|
3629
|
+
<meta name="color-scheme" content="light dark">
|
|
3630
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
3631
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
3632
|
+
@media (prefers-color-scheme: dark) {
|
|
3633
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
3634
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
3635
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
3636
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
3637
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
3638
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
3639
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
3640
|
+
.cs-link { color: #00ffff !important; }
|
|
3641
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
3642
|
+
}</style>
|
|
3643
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
3644
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
3645
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1549
3646
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1550
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">🆆🅰🆁🅽🅸🅽🅶</p>
|
|
3647
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;"><span class="cs-destructive" style="color: #e7000b;">🆆🅰🆁🅽🅸🅽🅶</span></p>
|
|
1551
3648
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Unusual login-code activity detected.</p>
|
|
1552
3649
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Details: 12 login codes requested in 5 minutes</p>
|
|
1553
3650
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">If this was you, no action is needed.</p>
|
|
1554
3651
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">If you didn't request these codes, someone may be trying to access your account.</p>
|
|
1555
3652
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">We recommend reviewing your account security.</p>
|
|
1556
3653
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">Time: Sun, 12 Jul 2026 14:30:00 GMT</p>
|
|
1557
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3654
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1558
3655
|
</div>
|
|
1559
3656
|
</body>
|
|
1560
3657
|
</html>",
|
|
@@ -1582,19 +3679,93 @@ https://companysemantics.ai
|
|
|
1582
3679
|
|
|
1583
3680
|
exports[`email render > security.alert · Unusual login location 1`] = `
|
|
1584
3681
|
{
|
|
3682
|
+
"amp": "<!DOCTYPE html>
|
|
3683
|
+
<html amp4email data-css-strict lang="en">
|
|
3684
|
+
<head><meta charset="utf-8">
|
|
3685
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3686
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3687
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3688
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3689
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3690
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3691
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3692
|
+
.csr-eom { color: #bbb; }
|
|
3693
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3694
|
+
.csr-warning { color: #e7000b; }
|
|
3695
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3696
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3697
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3698
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3699
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3700
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3701
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3702
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3703
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3704
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3705
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3706
|
+
.csr-cta-label { text-decoration: underline; }
|
|
3707
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
3708
|
+
.csr-cta-code { color: #0047FF; }
|
|
3709
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
3710
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
3711
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
3712
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
3713
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
3714
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3715
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3716
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3717
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3718
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
3719
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
3720
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
3721
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3722
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3723
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
3724
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
3725
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
3726
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
3727
|
+
<body class="csr-body">
|
|
3728
|
+
<div class="csr-frame">
|
|
3729
|
+
<p class="csr-p-normal"><span class="cs-destructive csr-warning">🆆🅰🆁🅽🅸🅽🅶</span></p>
|
|
3730
|
+
<p class="csr-p-normal">A login from an unusual location was detected.</p>
|
|
3731
|
+
<p class="csr-p-normal">Details: Login from Berlin, DE</p>
|
|
3732
|
+
<p class="csr-p-tight">If this was you, no action is needed.</p>
|
|
3733
|
+
<p class="csr-p-normal">If you didn't attempt to log in, someone may be trying to access your account.</p>
|
|
3734
|
+
<p class="csr-p-normal">We recommend reviewing your account security.</p>
|
|
3735
|
+
<p class="csr-p-none">Time: Sun, 12 Jul 2026 14:30:00 GMT</p>
|
|
3736
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
3737
|
+
</div>
|
|
3738
|
+
</body>
|
|
3739
|
+
</html>",
|
|
1585
3740
|
"html": "<!DOCTYPE html>
|
|
1586
3741
|
<html lang="en">
|
|
1587
|
-
<head><meta charset="UTF-8"
|
|
1588
|
-
<
|
|
3742
|
+
<head><meta charset="UTF-8">
|
|
3743
|
+
<meta name="color-scheme" content="light dark">
|
|
3744
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
3745
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
3746
|
+
@media (prefers-color-scheme: dark) {
|
|
3747
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
3748
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
3749
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
3750
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
3751
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
3752
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
3753
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
3754
|
+
.cs-link { color: #00ffff !important; }
|
|
3755
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
3756
|
+
}</style>
|
|
3757
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
3758
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
3759
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1589
3760
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1590
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">🆆🅰🆁🅽🅸🅽🅶</p>
|
|
3761
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;"><span class="cs-destructive" style="color: #e7000b;">🆆🅰🆁🅽🅸🅽🅶</span></p>
|
|
1591
3762
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A login from an unusual location was detected.</p>
|
|
1592
3763
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Details: Login from Berlin, DE</p>
|
|
1593
3764
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">If this was you, no action is needed.</p>
|
|
1594
3765
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">If you didn't attempt to log in, someone may be trying to access your account.</p>
|
|
1595
3766
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">We recommend reviewing your account security.</p>
|
|
1596
3767
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">Time: Sun, 12 Jul 2026 14:30:00 GMT</p>
|
|
1597
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3768
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1598
3769
|
</div>
|
|
1599
3770
|
</body>
|
|
1600
3771
|
</html>",
|
|
@@ -1622,45 +3793,145 @@ https://companysemantics.ai
|
|
|
1622
3793
|
|
|
1623
3794
|
exports[`email render > share.granted · Document · editor · message 1`] = `
|
|
1624
3795
|
{
|
|
3796
|
+
"amp": "<!DOCTYPE html>
|
|
3797
|
+
<html amp4email data-css-strict lang="en">
|
|
3798
|
+
<head><meta charset="utf-8">
|
|
3799
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3800
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3801
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3802
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3803
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3804
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3805
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3806
|
+
.csr-eom { color: #bbb; }
|
|
3807
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3808
|
+
.csr-warning { color: #e7000b; }
|
|
3809
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3810
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3811
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3812
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3813
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3814
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3815
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3816
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3817
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3818
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3819
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3820
|
+
.csr-cta-label { text-decoration: underline; }
|
|
3821
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
3822
|
+
.csr-cta-code { color: #0047FF; }
|
|
3823
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
3824
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
3825
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
3826
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
3827
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
3828
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3829
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3830
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
3831
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
3832
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
3833
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
3834
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
3835
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3836
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
3837
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
3838
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
3839
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
3840
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
3841
|
+
<body class="csr-body">
|
|
3842
|
+
<div class="csr-frame">
|
|
3843
|
+
<p class="csr-p-normal">Hi Sam Chen,</p>
|
|
3844
|
+
<p class="csr-p-normal">A document was shared with you.</p>
|
|
3845
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
3846
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
3847
|
+
<tr>
|
|
3848
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
3849
|
+
<td class="csr-chat-channel-right"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
3850
|
+
<tr><td class="cs-bubble csr-bubble-user">Take a look before Thursday's planning.</td></tr>
|
|
3851
|
+
</table></td>
|
|
3852
|
+
<td class="csr-chat-avatar-right">(•̀_ರ╮)</td>
|
|
3853
|
+
</tr>
|
|
3854
|
+
<tr>
|
|
3855
|
+
<td></td>
|
|
3856
|
+
<td class="cs-meta csr-chat-attribution">Jordan Lee</td>
|
|
3857
|
+
<td></td>
|
|
3858
|
+
</tr>
|
|
3859
|
+
</table>
|
|
3860
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
3861
|
+
<tr>
|
|
3862
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
3863
|
+
<td class="csr-chat-channel-right"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
3864
|
+
<tr><td class="csr-cta-cell-linked">
|
|
3865
|
+
<a href="https://app.companysemantics.ai/doc/roadmap" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">OPEN</span> <<</a>
|
|
3866
|
+
</td></tr>
|
|
3867
|
+
</table></div></td>
|
|
3868
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
3869
|
+
</tr>
|
|
3870
|
+
</table>
|
|
3871
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
3872
|
+
<p class="csr-p-tight">From: Jordan Lee</p>
|
|
3873
|
+
<p class="csr-p-tight">Item: "Q3 Roadmap"</p>
|
|
3874
|
+
<p class="csr-p-normal">Access: can edit</p>
|
|
3875
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
3876
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
3877
|
+
</div>
|
|
3878
|
+
</body>
|
|
3879
|
+
</html>",
|
|
1625
3880
|
"html": "<!DOCTYPE html>
|
|
1626
3881
|
<html lang="en">
|
|
1627
|
-
<head><meta charset="UTF-8"
|
|
1628
|
-
<
|
|
3882
|
+
<head><meta charset="UTF-8">
|
|
3883
|
+
<meta name="color-scheme" content="light dark">
|
|
3884
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
3885
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
3886
|
+
@media (prefers-color-scheme: dark) {
|
|
3887
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
3888
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
3889
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
3890
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
3891
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
3892
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
3893
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
3894
|
+
.cs-link { color: #00ffff !important; }
|
|
3895
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
3896
|
+
}</style>
|
|
3897
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
3898
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
3899
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1629
3900
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1630
3901
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi Sam Chen,</p>
|
|
1631
3902
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A document was shared with you.</p>
|
|
1632
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
3903
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1633
3904
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1634
3905
|
<tr>
|
|
1635
3906
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1636
3907
|
<td style="width: 100%; text-align: right;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1637
|
-
<tr><td style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Take a look before Thursday's planning.</td></tr>
|
|
3908
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Take a look before Thursday's planning.</td></tr>
|
|
1638
3909
|
</table></td>
|
|
1639
3910
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1640
3911
|
</tr>
|
|
1641
3912
|
<tr>
|
|
1642
3913
|
<td></td>
|
|
1643
|
-
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
3914
|
+
<td class="cs-meta" style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch;">Jordan Lee</td>
|
|
1644
3915
|
<td></td>
|
|
1645
3916
|
</tr>
|
|
1646
3917
|
</table>
|
|
1647
3918
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1648
3919
|
<tr>
|
|
1649
3920
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1650
|
-
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1651
|
-
<tr><td style="
|
|
1652
|
-
<a href="https://app.companysemantics.ai/doc/roadmap" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
3921
|
+
<td style="width: 100%; text-align: right;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
3922
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
3923
|
+
<a href="https://app.companysemantics.ai/doc/roadmap" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
1653
3924
|
</td></tr>
|
|
1654
3925
|
</table></div></td>
|
|
1655
3926
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1656
3927
|
</tr>
|
|
1657
3928
|
</table>
|
|
1658
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
3929
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1659
3930
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>
|
|
1660
3931
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">Item: "Q3 Roadmap"</p>
|
|
1661
3932
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Access: can edit</p>
|
|
1662
3933
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1663
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
3934
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1664
3935
|
</div>
|
|
1665
3936
|
</body>
|
|
1666
3937
|
</html>",
|
|
@@ -1701,19 +3972,113 @@ https://companysemantics.ai
|
|
|
1701
3972
|
|
|
1702
3973
|
exports[`email render > share.granted · Meeting · viewer · no title 1`] = `
|
|
1703
3974
|
{
|
|
3975
|
+
"amp": "<!DOCTYPE html>
|
|
3976
|
+
<html amp4email data-css-strict lang="en">
|
|
3977
|
+
<head><meta charset="utf-8">
|
|
3978
|
+
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
3979
|
+
<style amp4email-boilerplate>body{visibility:hidden}</style>
|
|
3980
|
+
<style amp-custom>.csr-body { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0; }
|
|
3981
|
+
.csr-frame { max-width: 520px; margin: 0 auto; }
|
|
3982
|
+
.csr-p-normal { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0; }
|
|
3983
|
+
.csr-p-tight { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0; }
|
|
3984
|
+
.csr-p-none { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0; }
|
|
3985
|
+
.csr-eom { color: #bbb; }
|
|
3986
|
+
.csr-signature-link { color: #0047FF; text-decoration: none; }
|
|
3987
|
+
.csr-warning { color: #e7000b; }
|
|
3988
|
+
.csr-hr-normal { border: none; border-top: 1px solid #bbb; margin: 0 0 20px 0; }
|
|
3989
|
+
.csr-hr-tight { border: none; border-top: 1px solid #bbb; margin: 0 0 4px 0; }
|
|
3990
|
+
.csr-hr-none { border: none; border-top: 1px solid #bbb; margin: 0; }
|
|
3991
|
+
.csr-hero-normal { max-width: 100%; margin: 0 0 20px 0; }
|
|
3992
|
+
.csr-hero-tight { max-width: 100%; margin: 0 0 4px 0; }
|
|
3993
|
+
.csr-hero-none { max-width: 100%; margin: 0; }
|
|
3994
|
+
.csr-cta-box-normal { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 20px 0; max-width: 220px; }
|
|
3995
|
+
.csr-cta-box-tight { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0 0 4px 0; max-width: 220px; }
|
|
3996
|
+
.csr-cta-box-none { display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px; }
|
|
3997
|
+
.csr-cta-cell-linked { text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3998
|
+
.csr-cta-cell-code { padding: 16px 24px; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; }
|
|
3999
|
+
.csr-cta-label { text-decoration: underline; }
|
|
4000
|
+
.csr-cta-anchor { display: block; padding: 16px 24px; color: #0047FF; text-decoration: none; }
|
|
4001
|
+
.csr-cta-code { color: #0047FF; }
|
|
4002
|
+
.csr-chat-rule-top { border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0; }
|
|
4003
|
+
.csr-chat-rule-bottom { border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0; }
|
|
4004
|
+
.csr-chat-row-24 { margin: 0 0 24px 0; }
|
|
4005
|
+
.csr-chat-row-16 { margin: 0 0 16px 0; }
|
|
4006
|
+
.csr-chat-attribution { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #666; text-align: right; padding-top: 6px; padding-right: 1ch; }
|
|
4007
|
+
.csr-chat-avatar-left { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
4008
|
+
.csr-chat-avatar-left-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
4009
|
+
.csr-chat-avatar-right { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; white-space: nowrap; }
|
|
4010
|
+
.csr-chat-avatar-right-hidden { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap; }
|
|
4011
|
+
.csr-chat-channel-left { width: 100%; text-align: left; }
|
|
4012
|
+
.csr-chat-channel-right { width: 100%; text-align: right; }
|
|
4013
|
+
.csr-chat-bubble-wrap { display: inline-block; max-width: 100%; vertical-align: bottom; }
|
|
4014
|
+
.csr-bubble-user { border-radius: 8px 8px 0 8px; padding: 10px 14px; text-align: right; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
4015
|
+
.csr-bubble-assistant { border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666; }
|
|
4016
|
+
.csr-dots-over-cta { font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; text-align: center; margin: 0 0 16px 0; }
|
|
4017
|
+
.csr-dots-cell { width: 100%; text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 20px; font-weight: bold; color: #666; }
|
|
4018
|
+
.csr-cta-stack { display: inline-block; text-align: left; }
|
|
4019
|
+
.cs-cta-hover:hover { background-color: #d1ffff; }</style></head>
|
|
4020
|
+
<body class="csr-body">
|
|
4021
|
+
<div class="csr-frame">
|
|
4022
|
+
<p class="csr-p-normal">Hi there,</p>
|
|
4023
|
+
<p class="csr-p-normal">A meeting was shared with you.</p>
|
|
4024
|
+
<hr class="cs-faint csr-chat-rule-top">
|
|
4025
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-16">
|
|
4026
|
+
<tr>
|
|
4027
|
+
<td class="csr-chat-avatar-left">[c_S]</td>
|
|
4028
|
+
<td class="csr-chat-channel-left"><table cellpadding="0" cellspacing="0" border="0" class="csr-chat-bubble-wrap">
|
|
4029
|
+
<tr><td class="cs-bubble csr-bubble-assistant">Open to view.</td></tr>
|
|
4030
|
+
</table></td>
|
|
4031
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
4032
|
+
</tr>
|
|
4033
|
+
</table>
|
|
4034
|
+
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="csr-chat-row-24">
|
|
4035
|
+
<tr>
|
|
4036
|
+
<td class="csr-chat-avatar-left-hidden">[c_S]</td>
|
|
4037
|
+
<td class="csr-chat-channel-left"><div class="csr-cta-stack"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover csr-cta-box-none">
|
|
4038
|
+
<tr><td class="csr-cta-cell-linked">
|
|
4039
|
+
<a href="https://app.companysemantics.ai/meeting/8842" class="cs-link csr-cta-anchor">>> <span class="csr-cta-label">OPEN</span> <<</a>
|
|
4040
|
+
</td></tr>
|
|
4041
|
+
</table></div></td>
|
|
4042
|
+
<td class="csr-chat-avatar-right-hidden">(•̀_ರ╮)</td>
|
|
4043
|
+
</tr>
|
|
4044
|
+
</table>
|
|
4045
|
+
<hr class="cs-faint csr-chat-rule-bottom">
|
|
4046
|
+
<p class="csr-p-tight">From: Jordan Lee</p>
|
|
4047
|
+
<p class="csr-p-normal">Access: can view</p>
|
|
4048
|
+
<p class="csr-p-none">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
4049
|
+
<p class="csr-p-none"><br><br><span class="cs-faint csr-eom">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link csr-signature-link">https://companysemantics.ai</a></p>
|
|
4050
|
+
</div>
|
|
4051
|
+
</body>
|
|
4052
|
+
</html>",
|
|
1704
4053
|
"html": "<!DOCTYPE html>
|
|
1705
4054
|
<html lang="en">
|
|
1706
|
-
<head><meta charset="UTF-8"
|
|
1707
|
-
<
|
|
4055
|
+
<head><meta charset="UTF-8">
|
|
4056
|
+
<meta name="color-scheme" content="light dark">
|
|
4057
|
+
<meta name="supported-color-schemes" content="light dark">
|
|
4058
|
+
<style>.cs-cta-hover:hover { background-color: #d1ffff !important; }
|
|
4059
|
+
@media (prefers-color-scheme: dark) {
|
|
4060
|
+
body { background-color: #1a1a1a !important; color: #e8e8e8 !important; }
|
|
4061
|
+
.cs-faint { color: #666 !important; border-top-color: #666 !important; }
|
|
4062
|
+
.cs-meta { color: #8a8a8a !important; }
|
|
4063
|
+
.cs-cta { border-color: #00ffff !important; }
|
|
4064
|
+
.cs-cta-hover:hover { background-color: #154848 !important; }
|
|
4065
|
+
.cs-bubble { background: #154848 !important; color: #ffffff !important; }
|
|
4066
|
+
.cs-dots { color: #8a8a8a !important; }
|
|
4067
|
+
.cs-link { color: #00ffff !important; }
|
|
4068
|
+
.cs-destructive { color: #ff6b6b !important; }
|
|
4069
|
+
}</style>
|
|
4070
|
+
<!--[if mso]><style>.cs-cta td { padding: 16px 24px !important; }
|
|
4071
|
+
.cs-cta a { padding: 0 !important; }</style><![endif]--></head>
|
|
4072
|
+
<body style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; color: #1a1a1a; background-color: #ffffff; margin: 0; padding: 0;">
|
|
1708
4073
|
<div style="max-width: 520px; margin: 0 auto;">
|
|
1709
4074
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Hi there,</p>
|
|
1710
4075
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">A meeting was shared with you.</p>
|
|
1711
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
4076
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 12px 0 24px 0;">
|
|
1712
4077
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 16px 0;">
|
|
1713
4078
|
<tr>
|
|
1714
4079
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; white-space: nowrap;">[c_S]</td>
|
|
1715
4080
|
<td style="width: 100%; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; max-width: 100%; vertical-align: bottom;">
|
|
1716
|
-
<tr><td style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>
|
|
4081
|
+
<tr><td class="cs-bubble" style="border-radius: 8px 8px 8px 0; padding: 10px 14px; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; color: #ffffff; background: #666;">Open to view.</td></tr>
|
|
1717
4082
|
</table></td>
|
|
1718
4083
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1719
4084
|
</tr>
|
|
@@ -1721,19 +4086,19 @@ exports[`email render > share.granted · Meeting · viewer · no title 1`] = `
|
|
|
1721
4086
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin: 0 0 24px 0;">
|
|
1722
4087
|
<tr>
|
|
1723
4088
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-right: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">[c_S]</td>
|
|
1724
|
-
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" style="display: inline-block; border: 1px solid #
|
|
1725
|
-
<tr><td style="
|
|
1726
|
-
<a href="https://app.companysemantics.ai/meeting/8842" style="color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
4089
|
+
<td style="width: 100%; text-align: left;"><div style="display: inline-block; text-align: left;"><table cellpadding="0" cellspacing="0" border="0" class="cs-cta cs-cta-hover" style="display: inline-block; border: 1px solid #0047FF; border-radius: 2px; margin: 0; max-width: 220px;">
|
|
4090
|
+
<tr><td style="text-align: center; font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px;">
|
|
4091
|
+
<a href="https://app.companysemantics.ai/meeting/8842" class="cs-link" style="display: block; padding: 16px 24px; color: #0047FF; text-decoration: none;">>> <span style="text-decoration: underline;">OPEN</span> <<</a>
|
|
1727
4092
|
</td></tr>
|
|
1728
4093
|
</table></div></td>
|
|
1729
4094
|
<td style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; padding-left: 8px; vertical-align: bottom; visibility: hidden; white-space: nowrap;">(•̀_ರ╮)</td>
|
|
1730
4095
|
</tr>
|
|
1731
4096
|
</table>
|
|
1732
|
-
<hr style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
4097
|
+
<hr class="cs-faint" style="border: none; border-top: 1px solid #bbb; margin: 24px 0 12px 0;">
|
|
1733
4098
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 4px 0;">From: Jordan Lee</p>
|
|
1734
4099
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0 0 20px 0;">Access: can view</p>
|
|
1735
4100
|
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;">This notification was sent via Company Semantics.<br>If you weren't expecting this, no action is required.</p>
|
|
1736
|
-
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
4101
|
+
<p style="font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace; font-size: 13px; margin: 0;"><br><br><span class="cs-faint" style="color: #bbb;">/* EOM */</span><br>ⓒ 2026 • Company Semantics<br><a href="https://companysemantics.ai" target="_blank" rel="noopener noreferrer" class="cs-link" style="color: #0047FF; text-decoration: none;">https://companysemantics.ai</a></p>
|
|
1737
4102
|
</div>
|
|
1738
4103
|
</body>
|
|
1739
4104
|
</html>",
|