| delete_email | Move an email to trash. | {"type":"object","properties":{"emailId":{"type":"string"}},"required":["emailId"]} |
| forward_email | Forward an email to a recipient. | {"type":"object","properties":{"emailId":{"type":"string"},"to":{"type":"string"},"body":{"type":"string"}},"required":["emailId","to"]} |
| list_contacts | List address book contacts. | {"type":"object","properties":{}} |
| list_folders | List mailbox folders. | {"type":"object","properties":{}} |
| mark_as_read | Mark an email as read. | {"type":"object","properties":{"emailId":{"type":"string"}},"required":["emailId"]} |
| move_email | Move an email to a folder. | {"type":"object","properties":{"emailId":{"type":"string"},"folder":{"type":"string"}},"required":["emailId","folder"]} |
| read_email | Read a full email by id; marks it read. | {"type":"object","properties":{"emailId":{"type":"string"}},"required":["emailId"]} |
| reply_email | Reply to an email by id. | {"type":"object","properties":{"emailId":{"type":"string"},"body":{"type":"string"},"replyAll":{"type":"boolean"}},"required":["emailId","body"]} |
| search_inbox | Search emails. Supports from:, to:, subject:, is:unread, is:read, folder:, and free-text terms. | {"type":"object","properties":{"query":{"type":"string"},"limit":{"type":"integer"}},"required":["query"]} |