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

Method reply

sdks/python/src/e2a/v1/client.py:326–333  ·  view source on GitHub ↗
(
        self, email: str, message_id: str, body: Body, *, idempotency_key: Optional[str] = None
    )

Source from the content-addressed store, hash-verified

324 )
325
326 async def reply(
327 self, email: str, message_id: str, body: Body, *, idempotency_key: Optional[str] = None
328 ) -> SendResultView:
329 req = _coerce(ReplyRequest, body)
330 return await self._c._write_keyed(
331 lambda h: self._api.reply_to_message(email, message_id, req, _headers=h),
332 idempotency_key,
333 )
334
335 async def forward(
336 self, email: str, message_id: str, body: Body, *, idempotency_key: Optional[str] = None

Callers

nothing calls this directly

Calls 3

_coerceFunction · 0.85
_write_keyedMethod · 0.80
reply_to_messageMethod · 0.80

Tested by

no test coverage detected