getMessage
Retrieve specific email messages from IMAP folders using unique identifiers to access and manage email content directly from email servers.
Instructions
Returns a message by UID from a given folder for a given IMAP account.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder | Yes | ||
uid | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folder": {
"maxLength": 100,
"minLength": 2,
"type": "string"
},
"uid": {
"type": "number"
}
},
"required": [
"folder",
"uid"
],
"type": "object"
}