gmail 回复不适用于 javamail:无法设置回复

发布于 2024-09-27 17:32:56 字数 1046 浏览 5 评论 0原文

我可以使用 gmail 和 javamail 发送邮件,

但是我无论如何都无法设置回复...

我使用的代码是...

   //the actual mail id [email protected]
   ccAddress = new InternetAddress( "[email protected]");

        msg.setFrom(ccAddress);

        Address[] addresses = new Address[1];
        //actually i want to addressee to reply-to
        addresses[0] = new InternetAddress( "[email protected]" );
        msg.setReplyTo(addresses);

        msg.setSubject(subject);
        msg.setText(text);
        msg.setHeader("MIME-Version" , "1.0" );
        msg.setHeader("Content-Type" , "text/html" );
        msg.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");

I can send mails with gmail with javamail

But i cannot set the reply to anyhow...

the code i m using is...

   //the actual mail id [email protected]
   ccAddress = new InternetAddress( "[email protected]");

        msg.setFrom(ccAddress);

        Address[] addresses = new Address[1];
        //actually i want to addressee to reply-to
        addresses[0] = new InternetAddress( "[email protected]" );
        msg.setReplyTo(addresses);

        msg.setSubject(subject);
        msg.setText(text);
        msg.setHeader("MIME-Version" , "1.0" );
        msg.setHeader("Content-Type" , "text/html" );
        msg.setHeader("X-Mailer", "Recommend-It Mailer V2.03c02");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不会写诗 2024-10-04 17:32:56

在调用 transport.sendMessage() 之前,请尝试调用 msg.saveChanges()
send() 函数在调用 sendMessage() 之前调用此函数,但如果您自己使用 sendMessage(),则必须调用此函数以确保保存所有标头。

Before you call transport.sendMessage(), try calling msg.saveChanges()
The send() function calls this before calling sendMessage(), but if you are using sendMessage() yourself, you will have to call this to make sure any headers are saved.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文