選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

invite_member_mail_template_en-US.html 2.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. <!-- Optional: Add a logo or a header image here -->
  79. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo">
  80. </div>
  81. <div class="content">
  82. <p class="content1">Dear {{ to }},</p>
  83. <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>
  84. <p class="content2">Click the button below to log in to Dify and join the workspace.</p>
  85. <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>
  86. <p class="content2">Best regards,</p>
  87. <p class="content2">Dify Team</p>
  88. </div>
  89. </div>
  90. </body>
  91. </html>