Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

invite_member_mail_template_zh-CN.html 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. font-family: 'Arial', sans-serif;
  7. line-height: 16pt;
  8. color: #374151;
  9. background-color: #E5E7EB;
  10. margin: 0;
  11. padding: 0;
  12. }
  13. .container {
  14. width: 504px;
  15. height: 444px;
  16. margin: 40px auto;
  17. padding: 0 48px;
  18. background-color: #fcfcfd;
  19. border-radius: 16px;
  20. border: 1px solid #ffffff;
  21. box-shadow: 0px 3px 10px -2px rgba(9, 9, 11, 0.08), 0px 2px 4px -2px rgba(9, 9, 11, 0.06);
  22. }
  23. .header {
  24. padding-top: 36px;
  25. padding-bottom: 24px;
  26. }
  27. .header img {
  28. max-width: 63px;
  29. height: auto;
  30. }
  31. .button {
  32. display: inline-block;
  33. width: 480px;
  34. padding: 8px 12px;
  35. color: white;
  36. text-decoration: none;
  37. border-radius: 10px;
  38. text-align: center;
  39. transition: background-color 0.3s ease;
  40. border: 0.5px solid rgba(16, 24, 40, 0.04);
  41. background-color: #155AEF;
  42. box-shadow: 0px -6px 12px -4px rgba(9, 9, 11, 0.08) inset, 0px 0px 1px 0px rgba(255, 255, 255, 0.16) inset, 0px 0.5px 0px 0px rgba(255, 255, 255, 0.08) inset, 0px 2px 2px -1px rgba(0, 0, 0, 0.12), 0px 1px 1px -1px rgba(0, 0, 0, 0.12), 0px 0px 0px 0.5px rgba(9, 9, 11, 0.05);
  43. font-family: Inter;
  44. font-size: 14px;
  45. font-style: normal;
  46. font-weight: 600;
  47. line-height: 20px; /* 142.857% */
  48. }
  49. .button:hover {
  50. background-color: #004AEB;
  51. border: 0.5px solid rgba(16, 24, 40, 0.08);
  52. box-shadow: 0px 1px 2px 0px rgba(9, 9, 11, 0.05);
  53. }
  54. .content {
  55. color: #354052;
  56. font-family: Inter;
  57. font-size: 14px;
  58. font-style: normal;
  59. font-weight: 400;
  60. line-height: 20px; /* 142.857% */
  61. letter-spacing: -0.07px;
  62. }
  63. .content1 {
  64. margin: 0;
  65. padding-top: 24px;
  66. padding-bottom: 12px;
  67. font-weight: 500;
  68. }
  69. .content2 {
  70. margin: 0;
  71. padding-bottom: 12px;
  72. }
  73. </style>
  74. </head>
  75. <body>
  76. <div class="container">
  77. <div class="header">
  78. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo">
  79. </div>
  80. <div class="content">
  81. <p class="content1">尊敬的 {{ to }},</p>
  82. <p class="content2">{{ inviter_name }} 现邀请您加入我们在 Dify 的工作区,这是一个专为 LLM 应用开发而设计的平台。在 Dify 上,您可以探索、创造和合作,构建和运营 AI 应用。</p>
  83. <p class="content2">点击下方按钮即可登录 Dify 并且加入空间。</p>
  84. <p style="text-align: center; margin: 0; margin-bottom: 32px;"><a style="color: #fff; text-decoration: none" class="button" href="{{ url }}">在此登录</a></p>
  85. <p class="content2">此致,</p>
  86. <p class="content2">Dify 团队</p>
  87. </div>
  88. </div>
  89. </body>
  90. </html>