clean_document_job_mail_template-US.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Documents Disabled Notification</title>
  7. <style>
  8. body {
  9. font-family: Arial, sans-serif;
  10. margin: 0;
  11. padding: 0;
  12. background-color: #f5f5f5;
  13. }
  14. .email-container {
  15. max-width: 600px;
  16. margin: 20px auto;
  17. background: #ffffff;
  18. border-radius: 10px;
  19. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  20. overflow: hidden;
  21. }
  22. .header {
  23. background-color: #eef2fa;
  24. padding: 20px;
  25. text-align: center;
  26. }
  27. .header img {
  28. height: 40px;
  29. }
  30. .content {
  31. padding: 20px;
  32. line-height: 1.6;
  33. color: #333;
  34. }
  35. .content h1 {
  36. font-size: 24px;
  37. color: #222;
  38. }
  39. .content p {
  40. margin: 10px 0;
  41. }
  42. .content ul {
  43. padding-left: 20px;
  44. }
  45. .content ul li {
  46. margin-bottom: 10px;
  47. }
  48. .cta-button, .cta-button:hover, .cta-button:active, .cta-button:visited, .cta-button:focus {
  49. display: block;
  50. margin: 20px auto;
  51. padding: 10px 20px;
  52. background-color: #4e89f9;
  53. color: #ffffff !important;
  54. text-align: center;
  55. text-decoration: none !important;
  56. border-radius: 5px;
  57. width: fit-content;
  58. }
  59. .footer {
  60. text-align: center;
  61. padding: 10px;
  62. font-size: 12px;
  63. color: #777;
  64. background-color: #f9f9f9;
  65. }
  66. </style>
  67. </head>
  68. <body>
  69. <div class="email-container">
  70. <!-- Header -->
  71. <div class="header">
  72. <img src="https://img.mailinblue.com/6365111/images/content_library/original/64cb67ca60532312c211dc72.png" alt="Dify Logo">
  73. </div>
  74. <!-- Content -->
  75. <div class="content">
  76. <h1>Some Documents in Your Knowledge Base Have Been Disabled</h1>
  77. <p>Dear {{userName}},</p>
  78. <p>
  79. We're sorry for the inconvenience. To ensure optimal performance, documents
  80. that haven’t been updated or accessed in the past 30 days have been disabled in
  81. your knowledge bases:
  82. </p>
  83. <ul>
  84. {% for item in knowledge_details %}
  85. <li>{{ item }}</li>
  86. {% endfor %}
  87. </ul>
  88. <p>You can re-enable them anytime.</p>
  89. <a href={{url}} class="cta-button">Re-enable in Dify</a>
  90. </div>
  91. <!-- Footer -->
  92. <div class="footer">
  93. Sincerely,<br>
  94. The Dify Team
  95. </div>
  96. </div>
  97. </body>
  98. </html>