email-components 0.1.0-alpha.2

Components for building email templates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(non_snake_case)]

pub mod button;
pub mod container;
pub mod email_html;
pub mod img;
pub mod link;
pub mod section;
pub mod text;

pub use button::Button;
pub use container::Container;
pub use email_html::EmailHtml;
pub use img::Img;
pub use link::Link;
pub use section::Section;
pub use text::Text;