LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
global class InboundEmail {
    global List<Messaging.InboundEmail.AuthenticationResult> authenticationResults;
    global List<Messaging.InboundEmail.BinaryAttachment> binaryAttachments;
    global List<String> ccAddresses;
    global String fromAddress;
    global String fromName;
    global List<Messaging.InboundEmail.Header> headers;
    global String htmlBody;
    global Boolean htmlBodyIsTruncated;
    global String inReplyTo;
    global String messageId;
    global String plainTextBody;
    global Boolean plainTextBodyIsTruncated;
    global List<String> references;
    global String replyTo;
    global String subject;
    global List<Messaging.InboundEmail.TextAttachment> textAttachments;
    global List<String> toAddresses;
    global InboundEmail() { }
    global Object clone() { }
global class AuthenticationResult {
    global List<Messaging.InboundEmail.AuthenticationResultField> authenticationResultFields;
    global String method;
    global String result;
    global InboundEmail.AuthenticationResult() { }
    global Object clone() { }
 
}
global class AuthenticationResultField {
    global String name;
    global String value;
    global InboundEmail.AuthenticationResultField() { }
    global Object clone() { }
 
}
global class BinaryAttachment {
    global Blob body;
    global String fileName;
    global List<Messaging.InboundEmail.Header> headers;
    global String mimeTypeSubType;
    global InboundEmail.BinaryAttachment() { }
    global Object clone() { }
 
}
global class Header {
    global String name;
    global String value;
    global InboundEmail.Header() { }
    global Object clone() { }
 
}
global class TextAttachment {
    global String body;
    global Boolean bodyIsTruncated;
    global String charset;
    global String fileName;
    global List<Messaging.InboundEmail.Header> headers;
    global String mimeTypeSubType;
    global InboundEmail.TextAttachment() { }
    global Object clone() { }
 
}
 
}