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
65
66
67
68
69
70
71
72
73
global class SingleEmailMessage {
    global List<String> bccaddresses;
    global List<String> ccaddresses;
    global String charset;
    global List<String> entityattachments;
    global List<Messaging.EmailFileAttachment> fileattachments;
    global String htmlbody;
    global String inreplyto;
    global String optoutpolicy;
    global Id orgwideemailaddressid;
    global String plaintextbody;
    global String references;
    global Id targetobjectid;
    global Id templateid;
    global String templatename;
    global List<String> toaddresses;
    global Boolean treatbodiesastemplate;
    global Boolean treattargetobjectasrecipient;
    global Boolean usermail;
    global Id whatid;
    global SingleEmailMessage() { }
    global List<String> getBccAddresses() { }
    global Boolean getBccSender() { }
    global List<String> getCcAddresses() { }
    global String getCharset() { }
    global String getEmailPriority() { }
    global List<String> getEntityAttachments() { }
    global List<Messaging.EmailFileAttachment> getFileAttachments() { }
    global String getHtmlBody() { }
    global String getInReplyTo() { }
    global String getOptOutPolicy() { }
    global Id getOrgWideEmailAddressId() { }
    global String getPlainTextBody() { }
    global String getReferences() { }
    global String getReplyTo() { }
    global Boolean getSaveAsActivity() { }
    global String getSenderDisplayName() { }
    global String getSubject() { }
    global Id getTargetObjectId() { }
    global Id getTemplateId() { }
    global String getTemplateName() { }
    global List<String> getToAddresses() { }
    global Boolean getUseSignature() { }
    global Id getWhatId() { }
    global Boolean isTreatBodiesAsTemplate() { }
    global Boolean isTreatTargetObjectAsRecipient() { }
    global Boolean isUserMail() { }
    global void setBccAddresses(List<String> param0) { }
    global void setBccSender(Boolean param0) { }
    global void setCcAddresses(List<String> param0) { }
    global void setCharset(String param0) { }
    global void setEmailPriority(String param0) { }
    global void setEntityAttachments(List<String> param0) { }
    global void setFileAttachments(List<Messaging.EmailFileAttachment> param0) { }
    global void setHtmlBody(String param0) { }
    global void setInReplyTo(String param0) { }
    global void setOptOutPolicy(String param0) { }
    global void setOrgWideEmailAddressId(Id param0) { }
    global void setPlainTextBody(String param0) { }
    global void setReferences(String param0) { }
    global void setReplyTo(String param0) { }
    global void setSaveAsActivity(Boolean param0) { }
    global void setSenderDisplayName(String param0) { }
    global void setSubject(String param0) { }
    global void setTargetObjectId(Id param0) { }
    global void setTemplateId(Id param0) { }
    global void setToAddresses(List<String> param0) { }
    global void setTreatBodiesAsTemplate(Boolean param0) { }
    global void setTreatTargetObjectAsRecipient(Boolean param0) { }
    global void setUseSignature(Boolean param0) { }
    global void setWhatId(Id param0) { }
 
}