1 个稳定版本
1.0.0 | 2023年7月25日 |
---|
#209 in 电子邮件
6KB
133 代码行
Abineo 消息传递
内部消息服务共享的结构体和枚举类型。
安装
使用 cargo
cargo add abineo-messaging
添加到 Cargo.toml
[dependencies]
abineo-messaging = "1"
用法
use abineo_messaging::*;
let result = Message::email_builder()
.subject("The Email")
.recipient("[email protected]")
.body(Content::builder()
.title("Hello, world!")
.subtitle("Lorem ipsum dolor")
.text("Now that we know who you are, I know who I am")
.secret("42"))
.build();
assert!(result.is_ok());
依赖项
~0.4–1MB
~24K SLoC