Java mail, set reply-to address not working

后端 未结 2 469
北荒
北荒 2021-02-13 01:43

I wrote a small email sending program in java, it has from, to and reply-to address, when the client tries to reply to the mail, it should

2条回答
  •  孤独总比滥情好
    2021-02-13 01:53

    Try:

    MimeMessage message = new MimeMessage(session);
    message.setReplyTo(new javax.mail.Address[]
    {
        new javax.mail.internet.InternetAddress("mnop@gmail.com")
    });
    

提交回复
热议问题