pub struct HttpEmailTransport {
pub endpoint: String,
pub api_key: String,
pub from: String,
pub provider: HttpEmailProvider,
}Expand description
Email delivery via HTTP POST (SendGrid, Resend, Stack0, or any HTTP endpoint).
Fields§
§endpoint: String§api_key: String§from: String§provider: HttpEmailProviderImplementations§
Trait Implementations§
Source§impl EmailTransport for HttpEmailTransport
impl EmailTransport for HttpEmailTransport
Auto Trait Implementations§
impl Freeze for HttpEmailTransport
impl RefUnwindSafe for HttpEmailTransport
impl Send for HttpEmailTransport
impl Sync for HttpEmailTransport
impl Unpin for HttpEmailTransport
impl UnsafeUnpin for HttpEmailTransport
impl UnwindSafe for HttpEmailTransport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more