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

Method forward

sdks/python/src/e2a/v1/client.py:335–342  ·  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

333 )
334
335 async def forward(
336 self, email: str, message_id: str, body: Body, *, idempotency_key: Optional[str] = None
337 ) -> SendResultView:
338 req = _coerce(ForwardRequest, body)
339 return await self._c._write_keyed(
340 lambda h: self._api.forward_message(email, message_id, req, _headers=h),
341 idempotency_key,
342 )
343
344 async def approve(
345 self,

Callers

nothing calls this directly

Calls 3

_coerceFunction · 0.85
_write_keyedMethod · 0.80
forward_messageMethod · 0.80

Tested by

no test coverage detected