versions.rst 2.1 KB

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