Skip to content

Releases: cubicbyte/tempmail-python

2.3.3 - Python 3.7+ support

08 Jan 14:06
ebb9e68
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.3.2...2.3.3

2.3.2

23 Nov 09:45
a2da524
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.3.1...2.3.2

2.3.1

28 Oct 09:32
2e75950
Compare
Choose a tag to compare

What's Changed

  • Add custom inbox update interval support by @cubicbyte in #2

New Contributors

Full Changelog: 2.3.0...2.3.1

2.3.0

22 Aug 18:49
1162d4e
Compare
Choose a tag to compare

In this update a lot of documentation has been added, the OneSecMail constructor field has been changed: OneSecMail(email=...) -> OneSecMail(address=...) and some other changes.

Full Changelog: 2.2.1...2.3.0

2.2.1 - New methods

09 Aug 05:41
Compare
Choose a tag to compare

Added EMail.address property and EMail.repr method.

2.2.0 - Fixes

07 Aug 15:57
Compare
Choose a tag to compare
  • Fixed name of Message.test_body (now text_body)
  • Fixed Message.body had incorrect value

Full Changelog: 2.1.0...2.2.0

2.1.0 - Upgraded date view

07 Aug 10:01
Compare
Choose a tag to compare

Previous:

msg = email.wait_for_message()
print(type(msg.date))  # <class 'str'>

Now:

msg = email.wait_for_message()
print(type(msg.date))  # <class 'datetime.datetime'>
print(type(msg.date_str))  # <class 'str'>

Full Changelog: 2.0.0...2.0.1

2.0.0 - API reworked

06 Aug 10:02
Compare
Choose a tag to compare

In this update, the package's API was revised and made simpler
by moving from functional programming principles to object based.

All documentation and examples are available in the README.md file

Full Changelog: 1.0.0...2.0.0

1.0.0 - First release!

05 Aug 20:32
Compare
Choose a tag to compare
Renamed project to tempmail-python