MCPcopy Create free account
hub / github.com/Mnexa-AI/e2a / reply

Method reply

mcp/src/client.ts:161–181  ·  view source on GitHub ↗
(
    messageId: string,
    body: {
      body: string;
      htmlBody?: string;
      replyAll?: boolean;
      cc?: Array<string>;
      bcc?: Array<string>;
      attachments?: Array<Attachment>;
      conversationId?: string;
    },
    opts: SendOpts = {},
    explicitAddress?: string,
  )

Source from the content-addressed store, hash-verified

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,

Callers 3

forwardMessageFunction · 0.45
registerMessageToolsFunction · 0.45
webhookFunction · 0.45

Calls 1

resolveAddressMethod · 0.95

Tested by

no test coverage detected