setup_email_account
Automatically configures email accounts by identifying the provider type and setting up server details, ensuring ready-to-use email integration for various providers.
Instructions
设置邮箱账号(自动识别邮箱类型并配置服务器)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | 邮箱地址(如 user@qq.com) | ||
password | Yes | 邮箱密码或授权码 | |
provider | No | 邮箱提供商(可选,不填写则自动识别) |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "邮箱地址(如 user@qq.com)",
"type": "string"
},
"password": {
"description": "邮箱密码或授权码",
"type": "string"
},
"provider": {
"description": "邮箱提供商(可选,不填写则自动识别)",
"enum": [
"qq",
"163",
"gmail",
"outlook",
"exmail",
"aliyun",
"sina",
"sohu"
],
"type": "string"
}
},
"required": [
"email",
"password"
],
"type": "object"
}