test_email_connection
Verify email server connectivity by testing SMTP (send), IMAP (receive), or both protocols to ensure proper email account management and communication.
Instructions
测试邮箱服务器连接
Input Schema
Name | Required | Description | Default |
---|---|---|---|
testType | No | 测试类型:smtp(发送)、imap(接收)或both(全部) |
Input Schema (JSON Schema)
{
"properties": {
"testType": {
"description": "测试类型:smtp(发送)、imap(接收)或both(全部)",
"enum": [
"smtp",
"imap",
"both"
],
"type": "string"
}
},
"required": [],
"type": "object"
}