Ghost邮箱SMTP设置找了些资料才发现
mail : {
transport: 'SMTP',
from: '"喵娘" <Miao@MoeYun.com>', // 姓名和发件人(邮箱)
options: {
host: 'smtp.qq.com', // 腾讯邮箱SMTP服务器地址,参考各邮箱的说明
secureConnection: true, // true就对了
port: 465, // 端口号,参考各邮箱的说明
auth: {
user: '邮箱', // 发件账号必须和 from 的发件人一致
pass: '邮箱密码'
}
}
}