(
self, email: str, body: Body, *, idempotency_key: Optional[str] = None
)
| 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 |
nothing calls this directly
no test coverage detected