sendTextEmail
Send plain-text emails via SMTP by setting sender, recipients, subject, and body. Useful for AI agents that need to deliver text-only messages and do not require a return result.
Instructions
Sends an email in text format. No result is returned.
Args: fromAddress: String. The Originating address. toAddresses: List of strings. The destination addresses. subject: String. The subject line. body: String. The message body. All line breaks in the string should be encoded.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| subject | Yes | ||
| fromAddress | Yes | ||
| toAddresses | Yes |