Reputation: 20576
I have a wxPython application that sends multipart emails with HTML and embedded images. As part of the sending process every email gets stored away as-is (RFC822 format) for future reference..
My question is: what would you recommend to show these emails from the application itself?
(Xubuntu 8.10)
Upvotes: 0
Views: 740
Reputation: 1611
If you don't mind opening the default email client on the user's system you can use the desktop module to do so (http://pypi.python.org/pypi/desktop).
Upvotes: 1