I am using spring MimeMessageHelper and JavaMailSender. Is it possible to show only the message senders name and not the address when sending email , email client (Outlook).
Thanks!
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"));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With