From 26f1c52198933a9f136bf81c53f98f72953681eb Mon Sep 17 00:00:00 2001 From: keven1024 Date: Tue, 2 Jun 2026 08:58:43 +0800 Subject: [PATCH] feat(config): add SMTP configuration options for email setup in config.example.yaml --- config.example.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config.example.yaml b/config.example.yaml index 3d7584f..33b3b5a 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -64,3 +64,10 @@ about: name: keven url: 'https://fudaoyuan.icu' avatar: '' + +smtp: + host: example.com # SMTP服务器地址 + port: 465 # SMTP端口号,通常为465(SSL)或587(TLS) + protocol: ssl # ssl or tls + username: your@example.com # 发送方邮箱 + password: your-password # 发送方邮箱密码/授权码