在config.js最下边添加mail设置
1mail: { 2 transport: 'SMTP', 3 from: 'wfuinfo@163.com', 4 options: { 5 host: 'smtp.163.com', 6 secureConnection: false, 7 port: 25, 8 auth: { 9 user: 'wfuinfo@163.com', 10 pass: 'xxxx' 11 } 12 } 13 }
而不是最上边的mail{} 中设置。 注意
Stella981
2021-10-11
在config.js最下边添加mail设置
1mail: { 2 transport: 'SMTP', 3 from: 'wfuinfo@163.com', 4 options: { 5 host: 'smtp.163.com', 6 secureConnection: false, 7 port: 25, 8 auth: { 9 user: 'wfuinfo@163.com', 10 pass: 'xxxx' 11 } 12 } 13 }
而不是最上边的mail{} 中设置。 注意