invite_member_mail_template_zh-CN.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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: 100%;
  15. max-width: 560px;
  16. margin: 40px auto;
  17. padding: 20px;
  18. background-color: #F3F4F6;
  19. border-radius: 8px;
  20. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  21. }
  22. .header {
  23. text-align: center;
  24. margin-bottom: 20px;
  25. }
  26. .header img {
  27. max-width: 100px;
  28. height: auto;
  29. }
  30. .button {
  31. display: inline-block;
  32. padding: 12px 24px;
  33. background-color: #2970FF;
  34. color: white;
  35. text-decoration: none;
  36. border-radius: 4px;
  37. text-align: center;
  38. transition: background-color 0.3s ease;
  39. }
  40. .button:hover {
  41. background-color: #265DD4;
  42. }
  43. .footer {
  44. font-size: 0.9em;
  45. color: #777777;
  46. margin-top: 30px;
  47. }
  48. .content {
  49. margin-top: 20px;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <div class="container">
  55. <div class="header">
  56. <img src="https://cloud.dify.ai/logo/logo-site.png" alt="Dify Logo">
  57. </div>
  58. <div class="content">
  59. <p>尊敬的 {{ to }},</p>
  60. <p>{{ inviter_name }} 现邀请您加入我们在 Dify 的工作区,这是一个专为 LLM 应用开发而设计的平台。在 Dify 上,您可以探索、创造和合作,构建和运营 AI 应用。</p>
  61. <p>点击下方按钮即可登录 Dify 并且加入空间。</p>
  62. <p style="text-align: center;"><a style="color: #fff; text-decoration: none" class="button" href="{{ url }}">在此登录</a></p>
  63. </div>
  64. <div class="footer">
  65. <p>此致,</p>
  66. <p>Dify 团队</p>
  67. <p>请不要直接回复此电子邮件;由系统自动发送。</p>
  68. </div>
  69. </div>
  70. </body>
  71. </html>