email-doc-sender 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -74,6 +74,27 @@ npm run build
74
74
  - 需要启用[应用专用密码](https://support.google.com/accounts/answer/185833)
75
75
  - SMTP: `smtp.gmail.com:587`, secure: false
76
76
 
77
+ ### Outlook / Microsoft 365
78
+
79
+ #### Outlook.com (个人账户)
80
+ | 参数 | 值 |
81
+ |------|-----|
82
+ | SMTP 服务器 | `smtp-mail.outlook.com` |
83
+ | 端口 | `587` |
84
+ | 加密方式 | STARTTLS (secure: false) |
85
+
86
+ #### Microsoft 365 / Office 365 (企业账户)
87
+ | 参数 | 值 |
88
+ |------|-----|
89
+ | SMTP 服务器 | `smtp.office365.com` |
90
+ | 端口 | `587` |
91
+ | 加密方式 | STARTTLS (secure: false) |
92
+
93
+ **重要提示**: 如果启用了双因素验证 (2FA),需要生成[应用专用密码](https://account.live.com/proofs/AppPassword),使用应用密码而非账户密码。
94
+
95
+ ### 126 / 163 邮箱
96
+ - SMTP: `smtp.163.com:465`, secure: true
97
+
77
98
  ## 使用
78
99
 
79
100
  配置完成后重启 Claude,然后:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "email-doc-sender",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MCP server for sending generated documents to email",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",