lettre / lettre

a mailer library for Rust

Home Page:https://lettre.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use async pool when enable async feature

Austaras opened this issue · comments

Currently lettre use r2d2 for pooling but it's a sync pool, when use async it may block worker. Async pool is better when used in a async context. I'd like to work on it if this feature is desirable.