(
messageId: string,
body: {
body: string;
htmlBody?: string;
replyAll?: boolean;
cc?: Array<string>;
bcc?: Array<string>;
attachments?: Array<Attachment>;
conversationId?: string;
},
opts: SendOpts = {},
explicitAddress?: string,
)
| 159 | } |
| 160 | |
| 161 | reply( |
| 162 | messageId: string, |
| 163 | body: { |
| 164 | body: string; |
| 165 | htmlBody?: string; |
| 166 | replyAll?: boolean; |
| 167 | cc?: Array<string>; |
| 168 | bcc?: Array<string>; |
| 169 | attachments?: Array<Attachment>; |
| 170 | conversationId?: string; |
| 171 | }, |
| 172 | opts: SendOpts = {}, |
| 173 | explicitAddress?: string, |
| 174 | ): Promise<SendResultView> { |
| 175 | return this.sdk.messages.reply( |
| 176 | this.resolveAddress(explicitAddress), |
| 177 | messageId, |
| 178 | body, |
| 179 | opts, |
| 180 | ); |
| 181 | } |
| 182 | |
| 183 | forward( |
| 184 | messageId: string, |
no test coverage detected