cnodejs / nodeclub

:baby_chick:Nodeclub 是使用 Node.js 和 MongoDB 开发的社区系统
http://cnodejs.org/
MIT License
9.34k stars 3.12k forks source link

发送邮件功能会发送失败,用户名需要加引号 #1137

Open zhoushirong opened 3 years ago

zhoushirong commented 3 years ago

文件:common/mail.js

var from = util.format('%s <%s>', config.name, config.mail_opts.auth.user); 需要加引号 var from = util.format('"%s" <%s>', config.name, config.mail_opts.auth.user);