postmark_client/
lib.rs

1//! # Postmark Client
2//!
3//! Postmark client is a client to interact with postmark which used reqwest
4//! for issuing API calls.
5//!
6//! The crate aims to be feature complete against the full Postmark API but
7//! until 1.0 it is a work in progress.
8//!
9//! To use the client create a new client and then use it to execute the
10//! desired postmark operations.
11//!
12//! <https://postmarkapp.com/developer/api/overview>
13
14mod emails;
15
16pub mod bounce;
17pub mod client;
18pub mod errors;
19pub mod types;
20
21pub use crate::client::Client;
22
23type Result<T> = std::result::Result<T, errors::PostmarkClientError>;