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