invite_member_mail_template_en-US.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <!-- Optional: Add a logo or a header image here -->
  57. <img src="https://cloud.dify.ai/logo/logo-site.png" alt="Dify Logo">
  58. </div>
  59. <div class="content">
  60. <p>Dear {{ to }},</p>
  61. <p>{{ 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>
  62. <p>You can now log in to Dify using the GitHub or Google account associated with this email.</p>
  63. <p style="text-align: center;"><a style="color: #fff; text-decoration: none" class="button" href="{{ url }}">Login Here</a></p>
  64. </div>
  65. <div class="footer">
  66. <p>Best regards,</p>
  67. <p>Dify Team</p>
  68. <p>Please do not reply directly to this email; it is automatically sent by the system.</p>
  69. </div>
  70. </div>
  71. </body>
  72. </html>