reply_email
이메일 · macOS
효과: 보내기. 상태: 조건부 제공.
‘조건부 제공’은 도구가 버전, 플랫폼, 권한, 계정 또는 설정에 따라 달라질 수 있음을 뜻하며 모든 설치에서 활성화되었다는 의미는 아닙니다.
macOS
목적
사용자가 Mac의 Apple Mail에 있는 이메일(list_emails/search_emails의 message ID)에 답장하려 할 때 사용합니다. 일반 텍스트 또는 HTML 본문을 지원하며 전송 전에 미리보기를 표시합니다. 전송하지 않고 Drafts에 답장을 남기려면 `save_as_draft: true`를 전달하세요. 원문 자동 인용, 올바른 스레드, Reply/Reply-All 수신자가 포함된 동일한 기본 Mail 답장을 만들고 전송 대신 저장하며, 이 경로에서는 `send`가 호출되지 않습니다. `reply_to_message_id`를 사용한 `create_draft`도 초안을 남기지만 처음부터 작성하므로 자동 인용이 없습니다. m365_list_emails의 Microsoft 365 message ID에는 m365_reply_email을 사용하세요. 다른 계정 검색을 건너뛰고 다중 계정 Mac의 시간 초과를 피하려면 list_emails/search_emails 결과의 `account`를 전달하세요.
필수 입력
message_id
입력 이름은 도구가 요구하는 정확한 형태로 유지됩니다. 영문 정식 기술 정의는 아래 펼칠 수 있는 스키마에 있습니다.
권한 및 확인
스키마에 명시적 확인 매개변수가 있습니다. 미리보기를 검토하고 플랫폼 계약에 따라 실제 작업을 승인하세요.
- 이 플랫폼에서는 사용자가 승인한 앱, 계정 및 리소스만 사용하세요. 연결 및 권한 요구 사항은 이 도구의 플랫폼별 설명을 참조하세요. 이 카탈로그는 추가 OAuth 범위나 OS 권한이 있다고 주장하지 않습니다.
영문 정식 기술 스키마 — macOS
{
"properties": {
"account": {
"description": "Account (from the listing) the message is in — pass it to skip scanning other accounts and avoid multi-account timeouts.",
"type": "string"
},
"body": {
"description": "Plain-text reply body.",
"type": "string"
},
"confirm": {
"default": "false",
"description": "Consent gate: the first call previews the reply; call again with confirm=true to actually SEND it — or to save it when save_as_draft is set.",
"type": "boolean"
},
"html_body": {
"description": "HTML reply body. Takes precedence over `body` when both are given.",
"type": "string"
},
"message_id": {
"description": "Id of the message to reply to (from list_emails/search_emails).",
"type": "string"
},
"reply_all": {
"default": "false",
"description": "Reply to all original recipients instead of just the sender.",
"type": "boolean"
},
"save_as_draft": {
"default": "false",
"description": "Save the native reply in Drafts instead of sending it. Keeps Mail's reply template: automatic quote of the original, the right thread, and the Reply/Reply-All recipients. Nothing is sent on this path.",
"type": "boolean"
}
},
"required": [
"message_id"
],
"type": "object"
}문서 예시
reply_email 문서 예시입니다. 이 예시를 실행하지 마세요. 표시된 인수는 가상 데이터 세트에 속합니다. 실제 호출 전에 실제 식별자를 확인하고 승인을 받으세요.
{
"body": "Can we review the launch checklist on Tuesday?",
"confirm": false,
"message_id": "demo-message-001"
}