delete_mails
Remove selected emails from your Naver Mail account by specifying their unique identifiers. This tool helps manage your inbox by permanently deleting unwanted messages.
Instructions
메일 삭제
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mail_uids | Yes | 삭제할 메일들의 UID 목록 |
Implementation Reference
- service/mail_service.py:108-113 (handler)The `delete_mails` method within the `MailService` class implements the actual logic to delete emails using the `imap_tools` library.
def delete_mails(self, mail_uids: List[str]) -> None: """ 메일을 삭제합니다. """ with self._get_mailbox_client() as mailbox: mailbox.delete(mail_uids)