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

Method send

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

Source from the content-addressed store, hash-verified

316 )
317
318 async def send(
319 self, email: str, body: Body, *, idempotency_key: Optional[str] = None
320 ) -> SendResultView:
321 req = _coerce(SendEmailRequest, body)
322 return await self._c._write_keyed(
323 lambda h: self._api.send_message(email, req, _headers=h), idempotency_key
324 )
325
326 async def reply(
327 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
send_messageMethod · 0.80

Tested by

no test coverage detected