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.

clean_document_job_mail_template-US.html 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. line-height: 16pt;
  11. color: #374151;
  12. background-color: #E5E7EB;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. .container {
  17. width: 504px;
  18. min-height: 638px;
  19. margin: 40px auto;
  20. padding: 0 48px;
  21. background-color: #fcfcfd;
  22. border-radius: 16px;
  23. border: 1px solid #ffffff;
  24. box-shadow: 0px 3px 10px -2px rgba(9, 9, 11, 0.08), 0px 2px 4px -2px rgba(9, 9, 11, 0.06);
  25. }
  26. .header {
  27. padding-top: 36px;
  28. padding-bottom: 24px;
  29. }
  30. .header img {
  31. max-width: 63px;
  32. height: auto;
  33. }
  34. .title {
  35. margin: 0;
  36. padding-top: 8px;
  37. padding-bottom: 16px;
  38. color: #101828;
  39. font-size: 24px;
  40. font-family: Inter;
  41. font-style: normal;
  42. font-weight: 600;
  43. line-height: 120%; /* 28.8px */
  44. }
  45. .button {
  46. display: block;
  47. padding: 8px 12px;
  48. color: white;
  49. text-decoration: none;
  50. border-radius: 10px;
  51. text-align: center;
  52. transition: background-color 0.3s ease;
  53. border: 0.5px solid rgba(16, 24, 40, 0.04);
  54. background-color: #155AEF;
  55. 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);
  56. font-family: Inter;
  57. font-size: 14px;
  58. font-style: normal;
  59. font-weight: 600;
  60. line-height: 20px; /* 142.857% */
  61. }
  62. .button:hover {
  63. background-color: #004AEB;
  64. border: 0.5px solid rgba(16, 24, 40, 0.08);
  65. box-shadow: 0px 1px 2px 0px rgba(9, 9, 11, 0.05);
  66. }
  67. .content {
  68. color: #354052;
  69. font-family: Inter;
  70. font-size: 14px;
  71. font-style: normal;
  72. font-weight: 400;
  73. line-height: 20px; /* 142.857% */
  74. letter-spacing: -0.07px;
  75. }
  76. .content1 {
  77. margin: 0;
  78. padding-top: 24px;
  79. padding-bottom: 12px;
  80. font-weight: 500;
  81. }
  82. .content2 {
  83. margin: 0;
  84. padding-bottom: 12px;
  85. }
  86. .list {
  87. margin: 0;
  88. margin-bottom: 20px;
  89. padding: 16px 24px;
  90. border-radius: 16px;
  91. background-color: #F2F4F7;
  92. list-style-type: none;
  93. color: #354052;
  94. font-family: Inter;
  95. font-size: 14px;
  96. font-style: normal;
  97. font-weight: 500;
  98. line-height: 20px; /* 142.857% */
  99. letter-spacing: -0.07px;
  100. }
  101. .list li {
  102. margin-bottom: 4px;
  103. }
  104. .list li:last-of-type {
  105. margin-bottom: 0px;
  106. }
  107. </style>
  108. </head>
  109. <body>
  110. <div class="container">
  111. <!-- Header -->
  112. <div class="header">
  113. <img src="https://assets.dify.ai/images/logo.png" alt="Dify Logo">
  114. </div>
  115. <!-- Content -->
  116. <h1 class="title">Some Documents in Your Knowledge Base Have Been Disabled</h1>
  117. <div class="content">
  118. <p class="content1">Dear {{userName}},</p>
  119. <p class="content2">
  120. We're sorry for the inconvenience. To ensure optimal performance, documents
  121. that haven’t been updated or accessed in the past 30 days have been disabled in
  122. your knowledge bases:
  123. </p>
  124. <ul class="list">
  125. {% for item in knowledge_details %}
  126. <li>{{ item }}</li>
  127. {% endfor %}
  128. </ul>
  129. <p class="content2">You can re-enable them anytime.</p>
  130. <p style="text-align: center; margin: 0; margin-bottom: 44px;">
  131. <a href={{url}} class="button">Re-enable in Dify</a>
  132. </p>
  133. <p class="content2">Best regards,</p>
  134. <p class="content2">Dify Team</p>
  135. </div>
  136. </div>
  137. </body>
  138. </html>