envelope icon indicating copy to clipboard operation
envelope copied to clipboard

Insert a message and attachments and send e-mail / sign / encrypt contents by a single line.

Results 3 envelope issues
Sort by recently updated
recently updated
newest added

Hi, Would the project consider introducing types? Concretely, Pyright complains about `nl2br` in calls such as: ```python envelope = Envelope(html_body) \ .mime(subtype='html', nl2br=False) \ # here .subject(subject) \ .from_(from_addr) \...

When I try this with `sign` being path to S/MIME key+cert: ``` if os.path.isfile(sign) envelope.signature(key=open(sign)) ``` I get `IndexError: list index out of range` because it is trying to use...

* [x] #22 * [x] shouldnt we add reply-to to the decipherers too? even if he wont receive the message, he ll get replies. I think this might be ok,...