send_email
Send emails with multiple recipients, attachments, CC/BCC, and plain text or HTML content through SMTP configurations.
Instructions
发送完整邮件(支持多个收件人、附件、CC、BCC)
Args: receiver_emails: 收件人邮箱地址列表 subject: 邮件主题 content: 邮件内容(纯文本或HTML) content_type: 内容类型,'plain' 表示纯文本,'html' 表示HTML格式 attachments: 附件文件路径列表(可选) cc_emails: 抄送邮箱地址列表(可选) bcc_emails: 密送邮箱地址列表(可选)
Returns: 发送结果信息
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| receiver_emails | Yes | ||
| subject | Yes | ||
| content | Yes | ||
| content_type | No | plain | |
| attachments | No | ||
| cc_emails | No | ||
| bcc_emails | No |