stalwartlabs / mail-send

E-mail delivery library for Rust with DKIM support
https://docs.rs/mail-send/
Apache License 2.0
202 stars 21 forks source link

Comparison to `lettre` #34

Open mo8it opened 3 months ago

mo8it commented 3 months ago

Hi :)

Could you please compare mail-send to lettre (since lettre is older)?

It would be awesome to add that comparison to the README? I am sure it would help people looking for an email client :D

mdecimus commented 3 months ago

Hi,

Would you like to submit a PR with the comparison? I think the main difference is that lettre does not support DKIM signing (not sure if this was developed recently) while mail-send does. On the other hand mail-send is async only and I think that lettre is also sync.

Congyuwang commented 1 week ago

lettre has connection pooling. So you get reconnecting and connection reuse for free. But maybe just wrap it with deadpool is good enough.