2017-08-28 107 views
0

我有方法用于发送电子邮件:
如何更改电子邮件地址回复在Java中

public static void sendMail(InternetAddress[] to, InternetAddress[] cc, InternetAddress[] bcc, String subject, String body, String priority, String type) throws MessagingException { 
    String host = "127.0.0.1"; 

    Properties properties = System.getProperties(); 
    properties.setProperty("mail.smtp.host", host); 

    Session session = Session.getInstance(properties); 

    MimeMessage msg = new MimeMessage(session); 
    msg.setSubject(subject); 
    msg.addHeader("X-Priority", priority); 
    msg.setFrom("[email protected]"); 
    msg.addRecipients(Message.RecipientType.TO, to); 

    if (cc != null) { 
     msg.addRecipients(Message.RecipientType.CC, cc); 
    } 

    if (bcc != null) { 
     msg.addRecipients(Message.RecipientType.BCC, bcc); 
    } 

    if (type == null) { 
     msg.setText(body); 
    } else { 
     msg.setText(body, "utf-8", type); 
    } 

    Transport.send(msg); 
} 

,我想的是,如果一些用户回复此类电子邮件,他的电子邮件将被重定向到其他一些电子邮件(例如[email protected])。

+1

这可能有所帮助:https://coderanch.com/t/274415/java/set-Return-Path-email-address#2823152 –

回答

2

尝试msg.setReplyTo(replyTo);请注意的replyTo不一样发件人地址

相关问题