react-email 4.0.7 → 4.0.9

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.
Files changed (156) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/cli/index.mjs +214 -186
  3. package/dist/preview/.next/BUILD_ID +1 -1
  4. package/dist/preview/.next/app-build-manifest.json +14 -14
  5. package/dist/preview/.next/app-path-routes-manifest.json +1 -1
  6. package/dist/preview/.next/build-manifest.json +2 -2
  7. package/dist/preview/.next/next-minimal-server.js.nft.json +1 -1
  8. package/dist/preview/.next/next-server.js.nft.json +1 -1
  9. package/dist/preview/.next/prerender-manifest.json +3 -3
  10. package/dist/preview/.next/server/app/_not-found/page.js +1 -1
  11. package/dist/preview/.next/server/app/_not-found/page.js.nft.json +1 -1
  12. package/dist/preview/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  13. package/dist/preview/.next/server/app/page.js +1 -1
  14. package/dist/preview/.next/server/app/page.js.nft.json +1 -1
  15. package/dist/preview/.next/server/app/page_client-reference-manifest.js +1 -1
  16. package/dist/preview/.next/server/app/preview/[...slug]/page.js +137 -75
  17. package/dist/preview/.next/server/app/preview/[...slug]/page.js.nft.json +1 -1
  18. package/dist/preview/.next/server/app/preview/[...slug]/page_client-reference-manifest.js +1 -1
  19. package/dist/preview/.next/server/app-paths-manifest.json +1 -1
  20. package/dist/preview/.next/server/chunks/267.js +14 -0
  21. package/dist/preview/.next/server/chunks/346.js +1 -0
  22. package/dist/preview/.next/server/chunks/{886.js → 775.js} +3 -3
  23. package/dist/preview/.next/server/pages/500.html +1 -1
  24. package/dist/preview/.next/server/server-reference-manifest.js +1 -1
  25. package/dist/preview/.next/server/server-reference-manifest.json +1 -1
  26. package/dist/preview/.next/static/chunks/33-ff3f70a80570ecda.js +1 -0
  27. package/dist/preview/.next/static/chunks/416-9c899340cfaa07d4.js +1 -0
  28. package/dist/preview/.next/static/chunks/516-2716d86d2f8b9000.js +1 -0
  29. package/dist/preview/.next/static/chunks/{587-352f8079202a48d0.js → 587-0644242ce9489212.js} +1 -1
  30. package/dist/preview/.next/static/chunks/app/layout-2726a60e293495d3.js +1 -0
  31. package/dist/preview/.next/static/chunks/app/{page-0ee3a37f3a3f6f17.js → page-1d98e2313c60dd77.js} +1 -1
  32. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-c77ff9f2bb1709b3.js +1 -0
  33. package/dist/preview/.next/static/chunks/f33a14d2-a04f3be0523bd1fa.js +6 -0
  34. package/dist/preview/.next/static/css/6f42d128f111d7fa.css +3 -0
  35. package/dist/preview/.next/trace +27 -27
  36. package/package.json +44 -46
  37. package/src/actions/email-validation/check-compatibility.ts +1 -1
  38. package/src/actions/email-validation/check-images.spec.tsx +1 -1
  39. package/src/actions/email-validation/check-links.spec.tsx +1 -1
  40. package/src/actions/email-validation/quick-fetch.ts +1 -1
  41. package/src/actions/render-email-by-path.tsx +6 -6
  42. package/src/app/preview/[...slug]/preview.tsx +1 -1
  43. package/src/commands/testing/out/magic-links/aws-verify-email.html +164 -0
  44. package/src/commands/testing/out/magic-links/linear-login-code.html +89 -0
  45. package/src/commands/testing/out/magic-links/notion-magic-link.html +75 -0
  46. package/src/commands/testing/out/magic-links/plaid-verify-identity.html +78 -0
  47. package/src/commands/testing/out/magic-links/raycast-magic-link.html +90 -0
  48. package/src/commands/testing/out/magic-links/slack-confirm.html +239 -0
  49. package/src/commands/testing/out/newsletters/codepen-challengers.html +547 -0
  50. package/src/commands/testing/out/newsletters/google-play-policy-update.html +338 -0
  51. package/src/commands/testing/out/newsletters/stack-overflow-tips.html +230 -0
  52. package/src/commands/testing/out/notifications/github-access-token.html +103 -0
  53. package/src/commands/testing/out/notifications/papermark-year-in-review.html +316 -0
  54. package/src/commands/testing/out/notifications/vercel-invite-user.html +170 -0
  55. package/src/commands/testing/out/notifications/yelp-recent-login.html +194 -0
  56. package/src/commands/testing/out/receipts/apple-receipt.html +676 -0
  57. package/src/commands/testing/out/receipts/nike-receipt.html +723 -0
  58. package/src/commands/testing/out/reset-password/dropbox-reset-password.html +97 -0
  59. package/src/commands/testing/out/reset-password/twitch-reset-password.html +219 -0
  60. package/src/commands/testing/out/reviews/airbnb-review.html +205 -0
  61. package/src/commands/testing/out/reviews/amazon-review.html +355 -0
  62. package/src/commands/testing/out/static/airbnb-logo.png +0 -0
  63. package/src/commands/testing/out/static/airbnb-review-user.jpg +0 -0
  64. package/src/commands/testing/out/static/amazon-book.jpg +0 -0
  65. package/src/commands/testing/out/static/amazon-facebook.jpg +0 -0
  66. package/src/commands/testing/out/static/amazon-instagram.jpg +0 -0
  67. package/src/commands/testing/out/static/amazon-logo.png +0 -0
  68. package/src/commands/testing/out/static/amazon-prime-logo.png +0 -0
  69. package/src/commands/testing/out/static/amazon-rating.gif +0 -0
  70. package/src/commands/testing/out/static/amazon-twitter.jpg +0 -0
  71. package/src/commands/testing/out/static/apple-card-icon.png +0 -0
  72. package/src/commands/testing/out/static/apple-hbo-max-icon.jpeg +0 -0
  73. package/src/commands/testing/out/static/apple-logo.png +0 -0
  74. package/src/commands/testing/out/static/apple-wallet.png +0 -0
  75. package/src/commands/testing/out/static/aws-logo.png +0 -0
  76. package/src/commands/testing/out/static/codepen-challengers.png +0 -0
  77. package/src/commands/testing/out/static/codepen-cube.png +0 -0
  78. package/src/commands/testing/out/static/codepen-pro.png +0 -0
  79. package/src/commands/testing/out/static/dropbox-logo.png +0 -0
  80. package/src/commands/testing/out/static/github.png +0 -0
  81. package/src/commands/testing/out/static/google-play-academy.png +0 -0
  82. package/src/commands/testing/out/static/google-play-chat.png +0 -0
  83. package/src/commands/testing/out/static/google-play-footer.png +0 -0
  84. package/src/commands/testing/out/static/google-play-header.png +0 -0
  85. package/src/commands/testing/out/static/google-play-icon.png +0 -0
  86. package/src/commands/testing/out/static/google-play-logo.png +0 -0
  87. package/src/commands/testing/out/static/google-play-pl.png +0 -0
  88. package/src/commands/testing/out/static/google-play.png +0 -0
  89. package/src/commands/testing/out/static/koala-logo.png +0 -0
  90. package/src/commands/testing/out/static/linear-logo.png +0 -0
  91. package/src/commands/testing/out/static/netlify-logo.png +0 -0
  92. package/src/commands/testing/out/static/nike-logo.png +0 -0
  93. package/src/commands/testing/out/static/nike-phone.png +0 -0
  94. package/src/commands/testing/out/static/nike-product.png +0 -0
  95. package/src/commands/testing/out/static/nike-recomendation-1.png +0 -0
  96. package/src/commands/testing/out/static/nike-recomendation-2.png +0 -0
  97. package/src/commands/testing/out/static/nike-recomendation-3.png +0 -0
  98. package/src/commands/testing/out/static/nike-recomendation-4.png +0 -0
  99. package/src/commands/testing/out/static/notion-logo.png +0 -0
  100. package/src/commands/testing/out/static/plaid-logo.png +0 -0
  101. package/src/commands/testing/out/static/raycast-bg.png +0 -0
  102. package/src/commands/testing/out/static/raycast-logo.png +0 -0
  103. package/src/commands/testing/out/static/slack-facebook.png +0 -0
  104. package/src/commands/testing/out/static/slack-linkedin.png +0 -0
  105. package/src/commands/testing/out/static/slack-logo.png +0 -0
  106. package/src/commands/testing/out/static/slack-twitter.png +0 -0
  107. package/src/commands/testing/out/static/stack-overflow-header.png +0 -0
  108. package/src/commands/testing/out/static/stack-overflow-logo-sm.png +0 -0
  109. package/src/commands/testing/out/static/stack-overflow-logo.png +0 -0
  110. package/src/commands/testing/out/static/stripe-logo.png +0 -0
  111. package/src/commands/testing/out/static/twitch-icon-facebook.png +0 -0
  112. package/src/commands/testing/out/static/twitch-icon-twitter.png +0 -0
  113. package/src/commands/testing/out/static/twitch-logo.png +0 -0
  114. package/src/commands/testing/out/static/vercel-arrow.png +0 -0
  115. package/src/commands/testing/out/static/vercel-logo.png +0 -0
  116. package/src/commands/testing/out/static/vercel-team.png +0 -0
  117. package/src/commands/testing/out/static/vercel-user.png +0 -0
  118. package/src/commands/testing/out/static/yelp-footer.png +0 -0
  119. package/src/commands/testing/out/static/yelp-header.png +0 -0
  120. package/src/commands/testing/out/static/yelp-logo.png +0 -0
  121. package/src/commands/testing/out/welcome/koala-welcome.html +89 -0
  122. package/src/commands/testing/out/welcome/netlify-welcome.html +198 -0
  123. package/src/commands/testing/out/welcome/stripe-welcome.html +152 -0
  124. package/src/components/toolbar.tsx +1 -0
  125. package/src/contexts/emails.tsx +1 -3
  126. package/src/contexts/fragment-identifier.tsx +3 -1
  127. package/src/contexts/preview.tsx +1 -3
  128. package/src/hooks/use-email-rendering-result.ts +18 -5
  129. package/src/hooks/use-hot-reload.ts +1 -1
  130. package/src/utils/__snapshots__/get-email-component.spec.ts.snap +1 -1
  131. package/src/utils/caniemail/ast/get-object-variables.ts +1 -1
  132. package/src/utils/caniemail/tailwind/generate-tailwind-rules.ts +1 -1
  133. package/src/utils/caniemail/tailwind/get-tailwind-config.ts +1 -1
  134. package/src/utils/caniemail/tailwind/get-tailwind-metadata.ts +1 -1
  135. package/src/utils/contains-email-template.spec.ts +107 -0
  136. package/src/utils/contains-email-template.ts +33 -0
  137. package/src/utils/get-email-component.ts +16 -1
  138. package/src/utils/get-emails-directory-metadata.ts +24 -13
  139. package/src/utils/index.ts +2 -2
  140. package/src/utils/run-bundled-code.ts +1 -1
  141. package/tailwind.config.ts +2 -1
  142. package/tsconfig.json +1 -1
  143. package/dist/cli/index.d.mts +0 -1
  144. package/dist/cli/index.d.ts +0 -1
  145. package/dist/cli/index.js +0 -1317
  146. package/dist/preview/.next/server/chunks/380.js +0 -1
  147. package/dist/preview/.next/server/chunks/840.js +0 -14
  148. package/dist/preview/.next/static/chunks/246-e7336e2929971f63.js +0 -1
  149. package/dist/preview/.next/static/chunks/539-6e9405ecdc007bb7.js +0 -1
  150. package/dist/preview/.next/static/chunks/853-a01d49f63a859f3d.js +0 -1
  151. package/dist/preview/.next/static/chunks/afa401a5-55858bf5265319eb.js +0 -6
  152. package/dist/preview/.next/static/chunks/app/layout-fa93a7ef0cc5ebdb.js +0 -1
  153. package/dist/preview/.next/static/chunks/app/preview/[...slug]/page-95449af2d870e732.js +0 -1
  154. package/dist/preview/.next/static/css/67e57230289273a9.css +0 -3
  155. /package/dist/preview/.next/static/{Oy7kpIZ6Nbnd7hpoEKBWw → 3apYH6rky7aNn7g4RIJp5}/_buildManifest.js +0 -0
  156. /package/dist/preview/.next/static/{Oy7kpIZ6Nbnd7hpoEKBWw → 3apYH6rky7aNn7g4RIJp5}/_ssgManifest.js +0 -0
@@ -0,0 +1,90 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html dir="ltr" lang="en">
3
+ <head>
4
+ <link rel="preload" as="image" href="/static/raycast-logo.png" />
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
6
+ <meta name="x-apple-disable-message-reformatting" />
7
+ <!--$-->
8
+ </head>
9
+ <body
10
+ style='background-color:#ffffff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif'>
11
+ <div
12
+ style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0">
13
+ Log in with this magic link.
14
+ <div>
15
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
16
+ </div>
17
+ </div>
18
+ <table
19
+ align="center"
20
+ width="100%"
21
+ border="0"
22
+ cellpadding="0"
23
+ cellspacing="0"
24
+ role="presentation"
25
+ style='max-width:37.5em;margin:0 auto;padding:20px 25px 48px;background-image:url("/static/raycast-bg.png");background-position:bottom;background-repeat:no-repeat, no-repeat'>
26
+ <tbody>
27
+ <tr style="width:100%">
28
+ <td>
29
+ <img
30
+ alt="Raycast"
31
+ height="48"
32
+ src="/static/raycast-logo.png"
33
+ style="display:block;outline:none;border:none;text-decoration:none"
34
+ width="48" />
35
+ <h1 style="font-size:28px;font-weight:bold;margin-top:48px">
36
+ 🪄 Your magic link
37
+ </h1>
38
+ <table
39
+ align="center"
40
+ width="100%"
41
+ border="0"
42
+ cellpadding="0"
43
+ cellspacing="0"
44
+ role="presentation"
45
+ style="margin:24px 0">
46
+ <tbody>
47
+ <tr>
48
+ <td>
49
+ <p
50
+ style="font-size:16px;line-height:26px;margin-top:16px;margin-bottom:16px">
51
+ <a
52
+ style="color:#FF6363;text-decoration-line:none"
53
+ target="_blank"
54
+ >👉 Click here to sign in 👈</a
55
+ >
56
+ </p>
57
+ <p
58
+ style="font-size:16px;line-height:26px;margin-top:16px;margin-bottom:16px">
59
+ If you didn&#x27;t request this, please ignore this email.
60
+ </p>
61
+ </td>
62
+ </tr>
63
+ </tbody>
64
+ </table>
65
+ <p
66
+ style="font-size:16px;line-height:26px;margin-top:16px;margin-bottom:16px">
67
+ Best,<br />- Raycast Team
68
+ </p>
69
+ <hr
70
+ style="width:100%;border:none;border-top:1px solid #eaeaea;border-color:#dddddd;margin-top:48px" />
71
+ <img
72
+ height="32"
73
+ src="/static/raycast-logo.png"
74
+ style="display:block;outline:none;border:none;text-decoration:none;-webkit-filter:grayscale(100%);filter:grayscale(100%);margin:20px 0"
75
+ width="32" />
76
+ <p
77
+ style="font-size:12px;line-height:24px;color:#8898aa;margin-left:4px;margin-top:16px;margin-bottom:16px">
78
+ Raycast Technologies Inc.
79
+ </p>
80
+ <p
81
+ style="font-size:12px;line-height:24px;color:#8898aa;margin-left:4px;margin-top:16px;margin-bottom:16px">
82
+ 2093 Philadelphia Pike #3222, Claymont, DE 19703
83
+ </p>
84
+ </td>
85
+ </tr>
86
+ </tbody>
87
+ </table>
88
+ <!--/$-->
89
+ </body>
90
+ </html>
@@ -0,0 +1,239 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html dir="ltr" lang="en">
3
+ <head>
4
+ <link rel="preload" as="image" href="/static/slack-logo.png" />
5
+ <link rel="preload" as="image" href="/static/slack-twitter.png" />
6
+ <link rel="preload" as="image" href="/static/slack-facebook.png" />
7
+ <link rel="preload" as="image" href="/static/slack-linkedin.png" />
8
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
9
+ <meta name="x-apple-disable-message-reformatting" />
10
+ <!--$-->
11
+ </head>
12
+ <body
13
+ style="background-color:#ffffff;margin:0 auto;font-family:-apple-system, BlinkMacSystemFont, &#x27;Segoe UI&#x27;, &#x27;Roboto&#x27;, &#x27;Oxygen&#x27;, &#x27;Ubuntu&#x27;, &#x27;Cantarell&#x27;, &#x27;Fira Sans&#x27;, &#x27;Droid Sans&#x27;, &#x27;Helvetica Neue&#x27;, sans-serif">
14
+ <div
15
+ style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0">
16
+ Confirm your email address
17
+ <div>
18
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
19
+ </div>
20
+ </div>
21
+ <table
22
+ align="center"
23
+ width="100%"
24
+ border="0"
25
+ cellpadding="0"
26
+ cellspacing="0"
27
+ role="presentation"
28
+ style="max-width:37.5em;margin:0 auto;padding:0px 20px">
29
+ <tbody>
30
+ <tr style="width:100%">
31
+ <td>
32
+ <table
33
+ align="center"
34
+ width="100%"
35
+ border="0"
36
+ cellpadding="0"
37
+ cellspacing="0"
38
+ role="presentation"
39
+ style="margin-top:32px">
40
+ <tbody>
41
+ <tr>
42
+ <td>
43
+ <img
44
+ alt="Slack"
45
+ height="36"
46
+ src="/static/slack-logo.png"
47
+ style="display:block;outline:none;border:none;text-decoration:none"
48
+ width="120" />
49
+ </td>
50
+ </tr>
51
+ </tbody>
52
+ </table>
53
+ <h1
54
+ style="color:#1d1c1d;font-size:36px;font-weight:700;margin:30px 0;padding:0;line-height:42px">
55
+ Confirm your email address
56
+ </h1>
57
+ <p
58
+ style="font-size:20px;line-height:28px;margin-bottom:30px;margin-top:16px">
59
+ Your confirmation code is below - enter it in your open browser
60
+ window and we&#x27;ll help you get signed in.
61
+ </p>
62
+ <table
63
+ align="center"
64
+ width="100%"
65
+ border="0"
66
+ cellpadding="0"
67
+ cellspacing="0"
68
+ role="presentation"
69
+ style="background:rgb(245, 244, 245);border-radius:4px;margin-bottom:30px;padding:40px 10px">
70
+ <tbody>
71
+ <tr>
72
+ <td>
73
+ <p
74
+ style="font-size:30px;line-height:24px;text-align:center;vertical-align:middle;margin-top:16px;margin-bottom:16px"></p>
75
+ </td>
76
+ </tr>
77
+ </tbody>
78
+ </table>
79
+ <p
80
+ style="font-size:14px;line-height:24px;color:#000;margin-top:16px;margin-bottom:16px">
81
+ If you didn&#x27;t request this email, there&#x27;s nothing to
82
+ worry about, you can safely ignore it.
83
+ </p>
84
+ <table
85
+ align="center"
86
+ width="100%"
87
+ border="0"
88
+ cellpadding="0"
89
+ cellspacing="0"
90
+ role="presentation">
91
+ <tbody>
92
+ <tr>
93
+ <td>
94
+ <table
95
+ align="center"
96
+ width="100%"
97
+ border="0"
98
+ cellpadding="0"
99
+ cellspacing="0"
100
+ role="presentation"
101
+ style="margin-bottom:32px;padding-left:8px;padding-right:8px;display:block">
102
+ <tbody style="width:100%">
103
+ <tr style="width:100%">
104
+ <td data-id="__react-email-column" style="width:66%">
105
+ <img
106
+ alt="Slack"
107
+ height="36"
108
+ src="/static/slack-logo.png"
109
+ style="display:block;outline:none;border:none;text-decoration:none"
110
+ width="120" />
111
+ </td>
112
+ <td data-id="__react-email-column">
113
+ <table
114
+ align="center"
115
+ width="100%"
116
+ border="0"
117
+ cellpadding="0"
118
+ cellspacing="0"
119
+ role="presentation">
120
+ <tbody>
121
+ <tr>
122
+ <td>
123
+ <table
124
+ align="center"
125
+ width="100%"
126
+ border="0"
127
+ cellpadding="0"
128
+ cellspacing="0"
129
+ role="presentation">
130
+ <tbody style="width:100%">
131
+ <tr style="width:100%">
132
+ <td data-id="__react-email-column">
133
+ <a
134
+ href="/"
135
+ style="color:#067df7;text-decoration-line:none"
136
+ target="_blank"
137
+ ><img
138
+ alt="Slack"
139
+ height="32"
140
+ src="/static/slack-twitter.png"
141
+ style="display:inline;outline:none;border:none;text-decoration:none;margin-left:32px"
142
+ width="32"
143
+ /></a>
144
+ </td>
145
+ <td data-id="__react-email-column">
146
+ <a
147
+ href="/"
148
+ style="color:#067df7;text-decoration-line:none"
149
+ target="_blank"
150
+ ><img
151
+ alt="Slack"
152
+ height="32"
153
+ src="/static/slack-facebook.png"
154
+ style="display:inline;outline:none;border:none;text-decoration:none;margin-left:32px"
155
+ width="32"
156
+ /></a>
157
+ </td>
158
+ <td data-id="__react-email-column">
159
+ <a
160
+ href="/"
161
+ style="color:#067df7;text-decoration-line:none"
162
+ target="_blank"
163
+ ><img
164
+ alt="Slack"
165
+ height="32"
166
+ src="/static/slack-linkedin.png"
167
+ style="display:inline;outline:none;border:none;text-decoration:none;margin-left:32px"
168
+ width="32"
169
+ /></a>
170
+ </td>
171
+ </tr>
172
+ </tbody>
173
+ </table>
174
+ </td>
175
+ </tr>
176
+ </tbody>
177
+ </table>
178
+ </td>
179
+ </tr>
180
+ </tbody>
181
+ </table>
182
+ </td>
183
+ </tr>
184
+ </tbody>
185
+ </table>
186
+ <table
187
+ align="center"
188
+ width="100%"
189
+ border="0"
190
+ cellpadding="0"
191
+ cellspacing="0"
192
+ role="presentation">
193
+ <tbody>
194
+ <tr>
195
+ <td>
196
+ <a
197
+ href="https://slackhq.com"
198
+ rel="noopener noreferrer"
199
+ style="color:#b7b7b7;text-decoration-line:none;text-decoration:underline"
200
+ target="_blank"
201
+ >Our blog</a
202
+ >   |   <a
203
+ href="https://slack.com/legal"
204
+ rel="noopener noreferrer"
205
+ style="color:#b7b7b7;text-decoration-line:none;text-decoration:underline"
206
+ target="_blank"
207
+ >Policies</a
208
+ >   |   <a
209
+ href="https://slack.com/help"
210
+ rel="noopener noreferrer"
211
+ style="color:#b7b7b7;text-decoration-line:none;text-decoration:underline"
212
+ target="_blank"
213
+ >Help center</a
214
+ >   |   <a
215
+ href="https://slack.com/community"
216
+ rel="noopener noreferrer"
217
+ data-auth="NotApplicable"
218
+ data-linkindex="6"
219
+ style="color:#b7b7b7;text-decoration-line:none;text-decoration:underline"
220
+ target="_blank"
221
+ >Slack Community</a
222
+ >
223
+ <p
224
+ style="font-size:12px;line-height:15px;color:#b7b7b7;text-align:left;margin-bottom:50px;margin-top:16px">
225
+ ©2022 Slack Technologies, LLC, a Salesforce company.
226
+ <br />500 Howard Street, San Francisco, CA 94105, USA
227
+ <br /><br />All rights reserved.
228
+ </p>
229
+ </td>
230
+ </tr>
231
+ </tbody>
232
+ </table>
233
+ </td>
234
+ </tr>
235
+ </tbody>
236
+ </table>
237
+ <!--/$-->
238
+ </body>
239
+ </html>