python-emails icon indicating copy to clipboard operation
python-emails copied to clipboard

Modern python library for emails

Results 21 python-emails issues
Sort by recently updated
recently updated
newest added

Currently, there’s no way to set `Reply-To` in the same way as `To`, `Cc`, or `Bcc`: ``` >>> import emails >>> ivan = ('Иван', '[email protected]') >>> maria = ('Марья', '[email protected]')...

Please see [this very short and simple gist](https://gist.github.com/r-pluss/ac6ef623c16f567098c2244863ef1316) for an example. I believe the exception is the result of the _build_html_part method of [message.py](https://github.com/lavr/python-emails/blob/master/emails/message.py) (currently starting at line 265). As...

The following two tests: - `emails/testsuite/message/test_send.py::test_send_letters` - `emails/testsuite/smtp/test_smtp_backend.py::test_smtp_send_with_reconnect` fail on my system, apparently because Microsoft rejects mail from home ISPs like mine (OnLime = Rostelecom): ``` smtp_servers = {'gmail.com-tls': ,...

I noticed documentation is [listed as the first todo](http://python-emails.readthedocs.io/en/latest/#todo) on the docs homepage. Is there any preference, or considerations, for what should be covered or how this should be added?...

Adds some minor extra detail to the readme and examples files. The latter relating to my experience following issue https://github.com/lavr/python-emails/issues/74.

Fix following issue ``` >>> etree.tostring(etree.fromstring('', parser=etree.HTMLParser())) '' ```

Would love to see a more consequent use of properties, e.g. get_cc should be property cc.

Previously only To was supported on rfc822 importing and Cc/Bcc was silently dropped. This change adds support (and related test) for these two fields. Signed-off-by: Dave Walker (Daviey) [email protected]

Transformer fails on RFC 2397 data url scheme. One should write test with embedded image, paste traceback here and discuss how to fix.