Postfix's Transport Encryption under Control of the User
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

mail_template.html 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <html>
  2. <body style="background: #eeeeee;">
  3. <table style="width: 100%; max-width: 630px; background: white; border: 1px solid #eaeaea; padding: 20px;">
  4. <tr>
  5. <td>
  6. <p style="font-size: 14px; font-weight: bold;">Hi!</p>
  7. <p style="font-size: 14px;">This is your mail server. I'm afraid, but I couldn't send the following email to the mentioned recipients securely:</p>
  8. <ul>
  9. <li style='font-size: 14px;'>Recipient(s): {{ recipients }}</li>
  10. <li style='font-size: 14px;'>Date: {{ date }}</li>
  11. <li style='font-size: 14px;'>Subject: {{ subject }}</li>
  12. </ul>
  13. {% if deleted %}
  14. <p style="font-size: 14px;">Since our company policy requires TLS
  15. encryption for the recipient(s) mentioned above, your mail was deleted.
  16. Please find a different - and secure - channel for communication.</p>
  17. {% else %}
  18. <p style="font-size: 14px;">Please tell me how you want me to handle this case:</p>
  19. <p>
  20. <a href='https://{{postfix_tls_host}}:8080/?queue_id={{queue_id}}&action=redirect' style='text-decoration: none;'>
  21. <button style="font-size: 14px; color: white; cursor: pointer; margin-left: 0px; margin-top: 10px; color: white; border: 0; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); background: rgb(223, 166, 53); padding: 10px;">Send unencrypted</button>
  22. </a>
  23. <a href='https://{{postfix_tls_host}}:8080/?queue_id={{queue_id}}&action=delete' style='text-decoration: none;'>
  24. <button style="font-size: 14px; color: white; cursor: pointer; margin-left: 0px; margin-top: 10px; color: white; border: 0; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); background: rgb(28, 184, 65); padding: 10px;">Delete message</button>
  25. </a>
  26. </p>
  27. {% endif %}
  28. <p style='font-size: 14px; margin-top: 25px;'>If you have any questions, please contact your <a href="mailto:{{postfix_sysadmin_mail_address}}" style="color: black;">System Administrator</a>.</p>
  29. </td>
  30. </tr>
  31. </table>
  32. </body>
  33. </html>