Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mail.smtp.user和有什么区别username?我在哪里指定目标地址(to字段)?如果不是,目标地址对应什么属性?
mail.smtp.user
username
to
希望这可以帮助:
资源
JavaMail 使用“mail.smtp.user”作为登录 SMTP 邮件服务器的默认用户名。
JavaMail 根本不使用名为“用户名”或“密码”的属性。
使用(例如)msg.setRecipients(Message.RecipientType.TO, "joe@example.com") 设置目标地址。