1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! Data models returned by YOPmail operations.
//!
//! These types intentionally keep fields as simple strings and `Option<String>` values to reflect
//! the underlying HTML sources. Fields may be absent or change based on YOPmail's markup.
use Serialize;
/// Summary information for a mailbox message.
/// A message summary parsed from the inbox HTML.
///
/// This is typically produced by [`YopmailClient::list_messages`](crate::YopmailClient::list_messages).
/// Attachment metadata from a message.
/// An attachment link extracted from a message view.
/// Full message content including text, HTML, and attachments.
/// Full content of a fetched message.