deleteFolder
Remove unwanted folders from an IMAP email account to organize mailbox structure and free up storage space.
Instructions
Deletes a folder from the IMAP account.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folderName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folderName": {
"maxLength": 100,
"minLength": 2,
"type": "string"
}
},
"required": [
"folderName"
],
"type": "object"
}