versions.rst 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .. _version-history:
  2. Version history
  3. ===============
  4. - ``0.5.0``
  5. - Add: Option to set custom email headers.
  6. - Add: New header, ``Message-ID: ...``. Sending emails via Gmail may fail without it as of 2022.
  7. - Add: New header, ``Date: ...``.
  8. - Fix: Capitalized email headers including ``From``, ``To`` and ``Subject``.
  9. - Update: Content-IDs (used in the embedded images in the HTML body) now uses fully qualified domain name
  10. (FQDN) by default. Can be customized by setting ``domain`` attribute in the sender.
  11. - Package: Now Red Mail is built using pyproject.toml and CI pipelines were updated.
  12. - ``0.4.2``
  13. - Docs: Changed docs style.
  14. - ``0.4.1``
  15. - Add: Mypy stubs (thanks Waghabond!)
  16. - Docs: Improved embedded content page.
  17. - ``0.4.0``
  18. - Rename: Changed ``user_name`` to ``username`` in ``redmail.EmailSender``. ``user_name`` still works but issues a warning.
  19. - Add: ``redmail.EmailSender.send`` now has new argument ``use_jinja`` (by default True) to disable Jinja templating.
  20. - Fix: Now the MIME structure is more defined and more likely renders emails properly across email providers.
  21. - Fix: Embedded images for aliased senders.
  22. - Docs: Added examples of how to test Red Mail's messages.
  23. - ``0.3.1``
  24. - Package: Added the license as a classifier to setup.py. Some pipelines may require such.
  25. - ``0.3.0``
  26. - Add: Logging handlers (:class:`.EmailHandler`, :class:`.MultiEmailHandler`)
  27. - Add: Outlook pre-configured sender
  28. - Add: Multiple emails can be sent without closing the connection using context manager in :class:`EmailSender`
  29. - ``0.2.1``
  30. - Fix: If some attachments are specified and only text body or no body at all is set´, sending email no longer crashes
  31. - Fix: Now embedded images support also non-PNG images using dict format
  32. - Docs: Added examples of embedding images using dict format
  33. - Docs: Added an example of sending emails using aliases
  34. - Docs: Fixed some couple of typos
  35. - ``0.2.0``
  36. - Docs: Docstrings were rewritten and are more complete
  37. - Docs: Huge improvement on the official documentation
  38. - Add: Support for TLS, SSL and other types of protocols
  39. - Add: Subclassing of ``EmailSender`` has better support allowing for interesting customization
  40. - Fix: Fixed a couple of minor bugs related to exceptions, format classes and tests
  41. - Test: Test coverage is now almost 100 %
  42. - ``0.1.1``
  43. - Package: Dropped Pandas as hard dependency
  44. - ``0.1.0``
  45. - First release