postmark 2.0.1

Postmark rust client
Documentation
1
2
3
4
5
6
7
8
9
10
//! You'll find in email sending related endpoints.
mod send_email;
mod send_email_batch;
mod send_email_batch_with_templates;
mod send_email_with_template;

pub use send_email::*;
pub use send_email_batch::*;
pub use send_email_batch_with_templates::*;
pub use send_email_with_template::*;