2
私は春のMimeMessageHelperとJavaMailSenderを使用しています。電子メール、電子メールクライアント(Outlook)を送信するときに、アドレスではなくメッセージ送信者の名前のみを表示することは可能ですか?JavaMailSenderとクライアントのOutlookの「名前」からのみ表示する
ありがとうございます!
私は春のMimeMessageHelperとJavaMailSenderを使用しています。電子メール、電子メールクライアント(Outlook)を送信するときに、アドレスではなくメッセージ送信者の名前のみを表示することは可能ですか?JavaMailSenderとクライアントのOutlookの「名前」からのみ表示する
ありがとうございます!
MimeMessageHelper message = new MimeMessageHelper(mimeMessage, true, "UTF-8");
// you can either do it this way with a regular string
message.setFrom("John Smith <[email protected]>");
// or this way with an InternetAddress
message.setFrom(new InternetAddress("[email protected]", "John Smith"));