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,97 @@
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/dropbox-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 style="background-color:#f6f9fc;padding:10px 0">
10
+ <div
11
+ style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0">
12
+ Dropbox reset your password
13
+ <div>
14
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
15
+ </div>
16
+ </div>
17
+ <table
18
+ align="center"
19
+ width="100%"
20
+ border="0"
21
+ cellpadding="0"
22
+ cellspacing="0"
23
+ role="presentation"
24
+ style="max-width:37.5em;background-color:#ffffff;border:1px solid #f0f0f0;padding:45px">
25
+ <tbody>
26
+ <tr style="width:100%">
27
+ <td>
28
+ <img
29
+ alt="Dropbox"
30
+ height="33"
31
+ src="/static/dropbox-logo.png"
32
+ style="display:block;outline:none;border:none;text-decoration:none"
33
+ width="40" />
34
+ <table
35
+ align="center"
36
+ width="100%"
37
+ border="0"
38
+ cellpadding="0"
39
+ cellspacing="0"
40
+ role="presentation">
41
+ <tbody>
42
+ <tr>
43
+ <td>
44
+ <p
45
+ style="font-size:16px;line-height:26px;font-family:&#x27;Open Sans&#x27;, &#x27;HelveticaNeue-Light&#x27;, &#x27;Helvetica Neue Light&#x27;, &#x27;Helvetica Neue&#x27;, Helvetica, Arial, &#x27;Lucida Grande&#x27;, sans-serif;font-weight:300;color:#404040;margin-top:16px;margin-bottom:16px">
46
+ Hi
47
+ <!-- -->,
48
+ </p>
49
+ <p
50
+ style="font-size:16px;line-height:26px;font-family:&#x27;Open Sans&#x27;, &#x27;HelveticaNeue-Light&#x27;, &#x27;Helvetica Neue Light&#x27;, &#x27;Helvetica Neue&#x27;, Helvetica, Arial, &#x27;Lucida Grande&#x27;, sans-serif;font-weight:300;color:#404040;margin-top:16px;margin-bottom:16px">
51
+ Someone recently requested a password change for your
52
+ Dropbox account. If this was you, you can set a new
53
+ password here:
54
+ </p>
55
+ <a
56
+ style="line-height:100%;text-decoration:none;display:block;max-width:100%;mso-padding-alt:0px;background-color:#007ee6;border-radius:4px;color:#fff;font-family:&#x27;Open Sans&#x27;, &#x27;Helvetica Neue&#x27;, Arial;font-size:15px;text-align:center;width:210px;padding:14px 7px 14px 7px"
57
+ target="_blank"
58
+ ><span
59
+ ><!--[if mso]><i style="mso-font-width:350%;mso-text-raise:21" hidden>&#8202;</i><![endif]--></span
60
+ ><span
61
+ style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:10.5px"
62
+ >Reset password</span
63
+ ><span
64
+ ><!--[if mso]><i style="mso-font-width:350%" hidden>&#8202;&#8203;</i><![endif]--></span
65
+ ></a
66
+ >
67
+ <p
68
+ style="font-size:16px;line-height:26px;font-family:&#x27;Open Sans&#x27;, &#x27;HelveticaNeue-Light&#x27;, &#x27;Helvetica Neue Light&#x27;, &#x27;Helvetica Neue&#x27;, Helvetica, Arial, &#x27;Lucida Grande&#x27;, sans-serif;font-weight:300;color:#404040;margin-top:16px;margin-bottom:16px">
69
+ If you don&#x27;t want to change your password or
70
+ didn&#x27;t request this, just ignore and delete this
71
+ message.
72
+ </p>
73
+ <p
74
+ style="font-size:16px;line-height:26px;font-family:&#x27;Open Sans&#x27;, &#x27;HelveticaNeue-Light&#x27;, &#x27;Helvetica Neue Light&#x27;, &#x27;Helvetica Neue&#x27;, Helvetica, Arial, &#x27;Lucida Grande&#x27;, sans-serif;font-weight:300;color:#404040;margin-top:16px;margin-bottom:16px">
75
+ To keep your account secure, please don&#x27;t forward
76
+ this email to anyone. See our Help Center for<!-- -->
77
+ <a
78
+ style="color:#067df7;text-decoration-line:none;text-decoration:underline"
79
+ target="_blank"
80
+ >more security tips.</a
81
+ >
82
+ </p>
83
+ <p
84
+ style="font-size:16px;line-height:26px;font-family:&#x27;Open Sans&#x27;, &#x27;HelveticaNeue-Light&#x27;, &#x27;Helvetica Neue Light&#x27;, &#x27;Helvetica Neue&#x27;, Helvetica, Arial, &#x27;Lucida Grande&#x27;, sans-serif;font-weight:300;color:#404040;margin-top:16px;margin-bottom:16px">
85
+ Happy Dropboxing!
86
+ </p>
87
+ </td>
88
+ </tr>
89
+ </tbody>
90
+ </table>
91
+ </td>
92
+ </tr>
93
+ </tbody>
94
+ </table>
95
+ <!--/$-->
96
+ </body>
97
+ </html>
@@ -0,0 +1,219 @@
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/twitch-logo.png" />
5
+ <link rel="preload" as="image" href="/static/twitch-icon-twitter.png" />
6
+ <link rel="preload" as="image" href="/static/twitch-icon-facebook.png" />
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+ <meta name="x-apple-disable-message-reformatting" />
9
+ <!--$-->
10
+ </head>
11
+ <body
12
+ style="background-color:#efeef1;font-family:HelveticaNeue,Helvetica,Arial,sans-serif">
13
+ <div
14
+ style="display:none;overflow:hidden;line-height:1px;opacity:0;max-height:0;max-width:0">
15
+ You updated the password for your Twitch account
16
+ <div>
17
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
18
+ </div>
19
+ </div>
20
+ <table
21
+ align="center"
22
+ width="100%"
23
+ border="0"
24
+ cellpadding="0"
25
+ cellspacing="0"
26
+ role="presentation"
27
+ style="max-width:580px;margin:30px auto;background-color:#ffffff">
28
+ <tbody>
29
+ <tr style="width:100%">
30
+ <td>
31
+ <table
32
+ align="center"
33
+ width="100%"
34
+ border="0"
35
+ cellpadding="0"
36
+ cellspacing="0"
37
+ role="presentation"
38
+ style="padding:30px">
39
+ <tbody>
40
+ <tr>
41
+ <td>
42
+ <img
43
+ alt="Twitch"
44
+ src="/static/twitch-logo.png"
45
+ style="display:block;outline:none;border:none;text-decoration:none;margin:0 auto"
46
+ width="114" />
47
+ </td>
48
+ </tr>
49
+ </tbody>
50
+ </table>
51
+ <table
52
+ align="center"
53
+ width="100%"
54
+ border="0"
55
+ cellpadding="0"
56
+ cellspacing="0"
57
+ role="presentation"
58
+ style="width:100%">
59
+ <tbody>
60
+ <tr>
61
+ <td>
62
+ <table
63
+ align="center"
64
+ width="100%"
65
+ border="0"
66
+ cellpadding="0"
67
+ cellspacing="0"
68
+ role="presentation">
69
+ <tbody style="width:100%">
70
+ <tr style="width:100%">
71
+ <td
72
+ data-id="__react-email-column"
73
+ style="border-bottom:1px solid rgb(238,238,238);width:249px"></td>
74
+ <td
75
+ data-id="__react-email-column"
76
+ style="border-bottom:1px solid rgb(145,71,255);width:102px"></td>
77
+ <td
78
+ data-id="__react-email-column"
79
+ style="border-bottom:1px solid rgb(238,238,238);width:249px"></td>
80
+ </tr>
81
+ </tbody>
82
+ </table>
83
+ </td>
84
+ </tr>
85
+ </tbody>
86
+ </table>
87
+ <table
88
+ align="center"
89
+ width="100%"
90
+ border="0"
91
+ cellpadding="0"
92
+ cellspacing="0"
93
+ role="presentation"
94
+ style="padding:5px 20px 10px 20px">
95
+ <tbody>
96
+ <tr>
97
+ <td>
98
+ <p
99
+ style="font-size:14px;line-height:1.5;margin-top:16px;margin-bottom:16px">
100
+ Hi
101
+ <!-- -->,
102
+ </p>
103
+ <p
104
+ style="font-size:14px;line-height:1.5;margin-top:16px;margin-bottom:16px">
105
+ You updated the password for your Twitch account on<!-- -->
106
+ <!-- -->Apr 17, 2025, 3:43:16 PM<!-- -->. If this was you,
107
+ then no further action is required.
108
+ </p>
109
+ <p
110
+ style="font-size:14px;line-height:1.5;margin-top:16px;margin-bottom:16px">
111
+ However if you did NOT perform this password change,
112
+ please<!-- -->
113
+ <a
114
+ href="https://www.twitch.tv"
115
+ style="color:#067df7;text-decoration-line:none;text-decoration:underline"
116
+ target="_blank"
117
+ >reset your account password</a
118
+ >
119
+ <!-- -->immediately.
120
+ </p>
121
+ <p
122
+ style="font-size:14px;line-height:1.5;margin-top:16px;margin-bottom:16px">
123
+ Remember to use a password that is both strong and unique
124
+ to your Twitch account. To learn more about how to create
125
+ a strong and unique password,<!-- -->
126
+ <a
127
+ href="https://www.twitch.tv"
128
+ style="color:#067df7;text-decoration-line:none;text-decoration:underline"
129
+ target="_blank"
130
+ >click here.</a
131
+ >
132
+ </p>
133
+ <p
134
+ style="font-size:14px;line-height:1.5;margin-top:16px;margin-bottom:16px">
135
+ Still have questions? Please contact<!-- -->
136
+ <a
137
+ href="https://www.twitch.tv"
138
+ style="color:#067df7;text-decoration-line:none;text-decoration:underline"
139
+ target="_blank"
140
+ >Twitch Support</a
141
+ >
142
+ </p>
143
+ <p
144
+ style="font-size:14px;line-height:1.5;margin-top:16px;margin-bottom:16px">
145
+ Thanks,<br />Twitch Support Team
146
+ </p>
147
+ </td>
148
+ </tr>
149
+ </tbody>
150
+ </table>
151
+ </td>
152
+ </tr>
153
+ </tbody>
154
+ </table>
155
+ <table
156
+ align="center"
157
+ width="100%"
158
+ border="0"
159
+ cellpadding="0"
160
+ cellspacing="0"
161
+ role="presentation"
162
+ style="max-width:580px;margin:0 auto">
163
+ <tbody>
164
+ <tr>
165
+ <td>
166
+ <table
167
+ align="center"
168
+ width="100%"
169
+ border="0"
170
+ cellpadding="0"
171
+ cellspacing="0"
172
+ role="presentation">
173
+ <tbody style="width:100%">
174
+ <tr style="width:100%">
175
+ <td
176
+ align="right"
177
+ data-id="__react-email-column"
178
+ style="width:50%;padding-right:8px">
179
+ <img
180
+ alt="Twitter"
181
+ src="/static/twitch-icon-twitter.png"
182
+ style="display:block;outline:none;border:none;text-decoration:none" />
183
+ </td>
184
+ <td
185
+ align="left"
186
+ data-id="__react-email-column"
187
+ style="width:50%;padding-left:8px">
188
+ <img
189
+ alt="Facebook"
190
+ src="/static/twitch-icon-facebook.png"
191
+ style="display:block;outline:none;border:none;text-decoration:none" />
192
+ </td>
193
+ </tr>
194
+ </tbody>
195
+ </table>
196
+ <table
197
+ align="center"
198
+ width="100%"
199
+ border="0"
200
+ cellpadding="0"
201
+ cellspacing="0"
202
+ role="presentation">
203
+ <tbody style="width:100%">
204
+ <tr style="width:100%">
205
+ <p
206
+ style="font-size:14px;line-height:24px;text-align:center;color:#706a7b;margin-top:16px;margin-bottom:16px">
207
+ © 2022 Twitch, All Rights Reserved <br />350 Bush Street,
208
+ 2nd Floor, San Francisco, CA, 94104 - USA
209
+ </p>
210
+ </tr>
211
+ </tbody>
212
+ </table>
213
+ </td>
214
+ </tr>
215
+ </tbody>
216
+ </table>
217
+ <!--/$-->
218
+ </body>
219
+ </html>
@@ -0,0 +1,205 @@
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/airbnb-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
+ Read undefined&#x27;s review
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:100%;margin:0 auto;padding:20px 0 48px;width:580px">
26
+ <tbody>
27
+ <tr style="width:100%">
28
+ <td>
29
+ <table
30
+ align="center"
31
+ width="100%"
32
+ border="0"
33
+ cellpadding="0"
34
+ cellspacing="0"
35
+ role="presentation">
36
+ <tbody>
37
+ <tr>
38
+ <td>
39
+ <img
40
+ alt="Airbnb"
41
+ height="30"
42
+ src="/static/airbnb-logo.png"
43
+ style="display:block;outline:none;border:none;text-decoration:none"
44
+ width="96" />
45
+ </td>
46
+ </tr>
47
+ </tbody>
48
+ </table>
49
+ <table
50
+ align="center"
51
+ width="100%"
52
+ border="0"
53
+ cellpadding="0"
54
+ cellspacing="0"
55
+ role="presentation">
56
+ <tbody>
57
+ <tr>
58
+ <td>
59
+ <img
60
+ height="96"
61
+ style="display:block;outline:none;border:none;text-decoration:none;margin:0 auto;margin-bottom:16px;border-radius:50%"
62
+ width="96" />
63
+ </td>
64
+ </tr>
65
+ </tbody>
66
+ </table>
67
+ <table
68
+ align="center"
69
+ width="100%"
70
+ border="0"
71
+ cellpadding="0"
72
+ cellspacing="0"
73
+ role="presentation"
74
+ style="padding-bottom:20px">
75
+ <tbody>
76
+ <tr>
77
+ <td>
78
+ <table
79
+ align="center"
80
+ width="100%"
81
+ border="0"
82
+ cellpadding="0"
83
+ cellspacing="0"
84
+ role="presentation">
85
+ <tbody style="width:100%">
86
+ <tr style="width:100%">
87
+ <p
88
+ style="font-size:32px;line-height:1.3;font-weight:700;color:#484848;margin-top:16px;margin-bottom:16px">
89
+ Here&#x27;s what
90
+ <!-- -->
91
+ wrote
92
+ </p>
93
+ <p
94
+ style="font-size:18px;line-height:1.4;color:#484848;padding:24px;background-color:#f2f3f3;border-radius:4px;margin-top:16px;margin-bottom:16px"></p>
95
+ <p
96
+ style="font-size:18px;line-height:1.4;color:#484848;margin-top:16px;margin-bottom:16px">
97
+ Now that the review period is over, we’ve posted
98
+ <!-- -->’s review to your Airbnb profile.
99
+ </p>
100
+ <p
101
+ style="font-size:18px;line-height:1.4;color:#484848;padding-bottom:16px;margin-top:16px;margin-bottom:16px">
102
+ While it’s too late to write a review of your own,
103
+ you can send your feedback to
104
+ <!-- -->
105
+ using your Airbnb message thread.
106
+ </p>
107
+ <a
108
+ href="https://www.airbnb.com"
109
+ style="line-height:100%;text-decoration:none;display:block;max-width:100%;mso-padding-alt:0px;background-color:#ff5a5f;border-radius:3px;color:#fff;font-size:18px;padding:19px 30px 19px 30px;text-align:center"
110
+ target="_blank"
111
+ ><span
112
+ ><!--[if mso]><i style="mso-font-width:500%;mso-text-raise:28.5" hidden>&#8202;&#8202;&#8202;</i><![endif]--></span
113
+ ><span
114
+ style="max-width:100%;display:inline-block;line-height:120%;mso-padding-alt:0px;mso-text-raise:14.25px"
115
+ >Send My Feedback</span
116
+ ><span
117
+ ><!--[if mso]><i style="mso-font-width:500%" hidden>&#8202;&#8202;&#8202;&#8203;</i><![endif]--></span
118
+ ></a
119
+ >
120
+ </tr>
121
+ </tbody>
122
+ </table>
123
+ </td>
124
+ </tr>
125
+ </tbody>
126
+ </table>
127
+ <hr
128
+ style="width:100%;border:none;border-top:1px solid #eaeaea;border-color:#cccccc;margin:20px 0" />
129
+ <table
130
+ align="center"
131
+ width="100%"
132
+ border="0"
133
+ cellpadding="0"
134
+ cellspacing="0"
135
+ role="presentation">
136
+ <tbody>
137
+ <tr>
138
+ <td>
139
+ <table
140
+ align="center"
141
+ width="100%"
142
+ border="0"
143
+ cellpadding="0"
144
+ cellspacing="0"
145
+ role="presentation">
146
+ <tbody style="width:100%">
147
+ <tr style="width:100%">
148
+ <p
149
+ style="font-size:18px;line-height:1.4;color:#484848;font-weight:700;margin-top:16px;margin-bottom:16px">
150
+ Common questions
151
+ </p>
152
+ <p
153
+ style="font-size:14px;line-height:24px;margin-top:16px;margin-bottom:16px">
154
+ <a
155
+ href="https://www.airbnb.com"
156
+ style="color:#ff5a5f;text-decoration-line:none;font-size:18px;line-height:1.4;display:block"
157
+ target="_blank"
158
+ >How do reviews work?</a
159
+ >
160
+ </p>
161
+ <p
162
+ style="font-size:14px;line-height:24px;margin-top:16px;margin-bottom:16px">
163
+ <a
164
+ href="https://www.airbnb.com"
165
+ style="color:#ff5a5f;text-decoration-line:none;font-size:18px;line-height:1.4;display:block"
166
+ target="_blank"
167
+ >How do star ratings work?</a
168
+ >
169
+ </p>
170
+ <p
171
+ style="font-size:14px;line-height:24px;margin-top:16px;margin-bottom:16px">
172
+ <a
173
+ href="https://www.airbnb.com"
174
+ style="color:#ff5a5f;text-decoration-line:none;font-size:18px;line-height:1.4;display:block"
175
+ target="_blank"
176
+ >Can I leave a review after 14 days?</a
177
+ >
178
+ </p>
179
+ <hr
180
+ style="width:100%;border:none;border-top:1px solid #eaeaea;border-color:#cccccc;margin:20px 0" />
181
+ <p
182
+ style="font-size:14px;line-height:24px;color:#9ca299;margin-bottom:10px;margin-top:16px">
183
+ Airbnb, Inc., 888 Brannan St, San Francisco, CA
184
+ 94103
185
+ </p>
186
+ <a
187
+ href="https://www.airbnb.com"
188
+ style="color:#9ca299;text-decoration-line:none;font-size:14px;text-decoration:underline"
189
+ target="_blank"
190
+ >Report unsafe behavior</a
191
+ >
192
+ </tr>
193
+ </tbody>
194
+ </table>
195
+ </td>
196
+ </tr>
197
+ </tbody>
198
+ </table>
199
+ </td>
200
+ </tr>
201
+ </tbody>
202
+ </table>
203
+ <!--/$-->
204
+ </body>
205
+ </html>