send-draft
Send a draft email from the Meme MCP Server by providing the draft ID. Simplify the process of dispatching pre-composed emails directly through the server.
Instructions
Send a draft email
Input Schema
Name | Required | Description | Default |
---|---|---|---|
draftId | Yes | The ID of the draft to send |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"draftId": {
"description": "The ID of the draft to send",
"type": "string"
}
},
"required": [
"draftId"
],
"type": "object"
}