plunk-rs 0.1.1

Async Rust client for the Plunk transactional email API
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod client;
mod email;
mod error;
mod response;
mod util;
mod wire;

pub use client::{Client, ClientBuilder};
pub use email::{Email, EmailAddress, Recipients};
pub use error::{ApiError, Error, Result};
pub use response::{Contact, Delivery, SendResponse};