mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
18 lines
665 B
Plaintext
18 lines
665 B
Plaintext
|
|
# **************************************************************
|
|||
|
|
# ----- Setting File with UTF8-----
|
|||
|
|
# ----- 邮件发送功能的账户信息配置文件 -----
|
|||
|
|
# ----- 此邮箱专门注册用于Hutool发送邮件测试,为公开邮箱 -----
|
|||
|
|
# **************************************************************
|
|||
|
|
|
|||
|
|
# 邮件服务器的SMTP地址
|
|||
|
|
host = smtp.yeah.net
|
|||
|
|
# 邮件服务器的SMTP端口
|
|||
|
|
port = 465
|
|||
|
|
# 发件人(必须正确,否则发送失败)
|
|||
|
|
from = 小磊<hutool@yeah.net>
|
|||
|
|
# 用户名(注意:如果使用foxmail邮箱,此处user为qq号)
|
|||
|
|
user = hutool
|
|||
|
|
# 密码
|
|||
|
|
pass = q1w2e3
|
|||
|
|
#使用 STARTTLS安全连接
|
|||
|
|
startttlsEnable = true
|