在javax.mail.MimeMessage中设置from name?

时间:2009-10-14 16:32:20

标签: java email javax.mail mime-message

目前,我们的应用程序使用javax.mail来发送电子邮件,使用javax.mail.MailMessage。我们以这种方式设置电子邮件的From标头:

Message msg = new MimeMessage(mailSession);
msg.setFrom(new InternetAddress("mail@companyxyz.com"));

这很好用,但我们想让“From”部分更加用户友好。目前,收到电子邮件的人会在收件箱的“发件人”部分看到“mail@companyxyz.com”。相反,我们希望他们在那里看到“公司XYZ”。我认为这可能是使用addHeader()方法完成的,但我不确定标题名称是什么。

4 个答案:

答案 0 :(得分:100)

好的,阅读有关所有相关课程的文档会有所帮助。正确的语法应该是

Message msg = new MimeMessage(mailSession);
msg.setFrom(new InternetAddress("mail@companyxyz.com", "Company XYZ"));

来源:https://javamail.java.net/nonav/docs/api/javax/mail/internet/InternetAddress.html

答案 1 :(得分:17)

如果您想将电子邮件+名称存储在一个字符串中(比保留两个字符串更容易):

Message msg = new MimeMessage(mailSession);
msg.setFrom(new InternetAddress("Company XYZ <mail@companyxyz.com>"));

答案 2 :(得分:1)

如果我使用带有特殊字符的本地化文本,例如\ u00FA,如果我只使用

,我会遇到一些pop3客户端编码电子邮件地址别名的问题
MimeMessage m = new MimeMessage(session);
m.setFrom();

可以通过调用单独的电子邮件地址和别名来解决:

MimeMessage m = new MimeMessage(session);
            m.setFrom(new InternetAddress(session.getProperty("mail.from"), session.getProperty("mail.from.alias"),"UTF8"));

参考:https://javamail.java.net/nonav/docs/api/javax/mail/internet/InternetAddress.html#InternetAddress(java.lang.String,%20java.lang.String,%20java.lang.String)

答案 3 :(得分:1)

ic = new InitialContext();

final Session session = (Session) ic.lookupLink(snName);
final Properties props = session.getProperties();

props.put("mail.from", mailFrom); //blabla@mail.com
props.put("mail.from.alias", mailName);//"joao Ninguem"

// Create a message with the specified information.
final MimeMessage msg = new MimeMessage(session);
msg.setSubject(subject);
msg.setSentDate(new Date());

msg.setFrom(new InternetAddress(session.getProperty("mail.from"), session.getProperty("mail.from.alias"), "UTF8"));


msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(mailTo, false));
msg.setContent(body, "text/html");

// Create a transport.
Transport.send(msg);