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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
use super::{Address, Delivered, DeliveryStatus, Displayed, EmailSubmission, UndoStatus};
use crate::{core::get::GetObject, Get, Set};
use ahash::AHashMap;
impl EmailSubmission<Get> {
pub fn id(&self) -> Option<&str> {
self.id.as_deref()
}
pub fn take_id(&mut self) -> String {
self.id.take().unwrap_or_default()
}
pub fn identity_id(&self) -> Option<&str> {
self.identity_id.as_deref()
}
pub fn email_id(&self) -> Option<&str> {
self.email_id.as_deref()
}
pub fn thread_id(&self) -> Option<&str> {
self.thread_id.as_deref()
}
pub fn mail_from(&self) -> Option<&Address> {
self.envelope.as_ref().map(|e| &e.mail_from)
}
pub fn rcpt_to(&self) -> Option<&[Address]> {
self.envelope.as_ref().map(|e| e.rcpt_to.as_ref())
}
pub fn send_at(&self) -> Option<i64> {
self.send_at.as_ref().map(|t| t.timestamp())
}
pub fn undo_status(&self) -> Option<&UndoStatus> {
self.undo_status.as_ref()
}
pub fn delivery_status_email(&self, email: &str) -> Option<&DeliveryStatus> {
self.delivery_status.as_ref().and_then(|ds| ds.get(email))
}
pub fn delivery_status(&self) -> Option<&AHashMap<String, DeliveryStatus>> {
self.delivery_status.as_ref()
}
pub fn dsn_blob_ids(&self) -> Option<&[String]> {
self.dsn_blob_ids.as_deref()
}
pub fn mdn_blob_ids(&self) -> Option<&[String]> {
self.mdn_blob_ids.as_deref()
}
}
impl Address<Get> {
pub fn email(&self) -> &str {
&self.email
}
pub fn parameter(&self, param: &str) -> Option<&str> {
self.parameters.as_ref()?.get(param)?.as_deref()
}
pub fn has_parameter(&self, param: &str) -> bool {
self.parameters
.as_ref()
.map(|ps| ps.contains_key(param))
.unwrap_or(false)
}
}
impl DeliveryStatus {
#[cfg(feature = "debug")]
pub fn new(smtp_reply: impl Into<String>, delivered: Delivered, displayed: Displayed) -> Self {
Self {
smtp_reply: smtp_reply.into(),
delivered,
displayed,
}
}
pub fn smtp_reply(&self) -> &str {
&self.smtp_reply
}
pub fn delivered(&self) -> &Delivered {
&self.delivered
}
pub fn displayed(&self) -> &Displayed {
&self.displayed
}
}
impl GetObject for EmailSubmission<Set> {
type GetArguments = ();
}
impl GetObject for EmailSubmission<Get> {
type GetArguments = ();
}