piknik
piknik copied to clipboard
Copy/paste anything over the network.
After #623 `Bcc` header is removed from formatted message, we should do something better. The presence of the header should depend on the chosen transport.
Adding Send + Sync bounds to AsyncTransport and associated types (for #770) This reduces the amount of bounds that must be specified for a function that is generic over AsyncTransport....
Would unfortunately require us to bump the MSRV to 1.60, which is too high https://lib.rs/stats#rustc
**Is your feature request related to a problem? Please describe.** I would like to add `protected-headers="v1"` to the `Content-Type` header. What I'm trying to accomplish is to encrypt the headers...
**Is your feature request related to a problem? Please describe.** I am generating emails from an external input. I may or may not have cc, bcc, or attachments. The messagebuilder...
With #763 and #765 reducing our reliance on the regex crate I think it's now possible for it to be removed entirely at some point. This removes the need to...
**Is your feature request related to a problem? Please describe.** Getting started with lettre, these are the imports I need for a minimal setup: ``` use lettre::message::Message; use lettre::transport::smtp::authentication::Credentials; use...
**Describe the bug** When SMTP server closes connection because of timeout, lettre `AsyncSmtpTransport` client doesn't recover and fails to deliver message **To Reproduce** I'm using this config ```rust let mailer...
Renames `timeout` to `connection_timeout`, since that's all it's really controlling. If we were to add timeouts on more things in the future they would better work as separate parameters.
**Describe the bug** I get a " the trait bound `MaybeString: std::convert::From` is not satisfied " when trying to use the example code. It's complaining when I try to use...