You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

invite_member_mail_template_en-US.html 2.8KB

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. min-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: block;
  33. padding: 8px 12px;
  34. color: white;
  35. text-decoration: none;
  36. border-radius: 10px;
  37. text-align: center;
  38. transition: background-color 0.3s ease;
  39. border: 0.5px solid rgba(16, 24, 40, 0.04);
  40. background-color: #155AEF;
  41. 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);
  42. font-family: Inter;
  43. font-size: 14px;
  44. font-style: normal;
  45. font-weight: 600;
  46. line-height: 20px; /* 142.857% */
  47. }
  48. .button:hover {
  49. background-color: #004AEB;
  50. border: 0.5px solid rgba(16, 24, 40, 0.08);
  51. box-shadow: 0px 1px 2px 0px rgba(9, 9, 11, 0.05);
  52. }
  53. .content {
  54. color: #354052;
  55. font-family: Inter;
  56. font-size: 14px;
  57. font-style: normal;
  58. font-weight: 400;
  59. line-height: 20px; /* 142.857% */
  60. letter-spacing: -0.07px;
  61. }
  62. .content1 {
  63. margin: 0;
  64. padding-top: 24px;
  65. padding-bottom: 12px;
  66. font-weight: 500;
  67. }
  68. .content2 {
  69. margin: 0;
  70. padding-bottom: 12px;
  71. }
  72. </style>
  73. </head>
  74. <body>
  75. <div class="container">
  76. <div class="header">
  77. <!-- Optional: Add a logo or a header image here -->
  78. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo">
  79. </div>
  80. <div class="content">
  81. <p class="content1">Dear {{ to }},</p>
  82. <p class="content2">{{ inviter_name }} is pleased to invite you to join our workspace on Dify, a platform specifically designed for LLM application development. On Dify, you can explore, create, and collaborate to build and operate AI applications.</p>
  83. <p class="content2">Click the button below to log in to Dify and join the workspace.</p>
  84. <p style="text-align: center; margin: 0; margin-bottom: 32px;"><a style="color: #fff; text-decoration: none" class="button" href="{{ url }}">Login Here</a></p>
  85. <p class="content2">Best regards,</p>
  86. <p class="content2">Dify Team</p>
  87. </div>
  88. </div>
  89. </body>
  90. </html>