我有一个应用程序通过发送带有附件的电子邮件与其他人的服务器通信。
我使用 Apache Commons Email 发送带有附件的电子邮件,如下所示:
MultiPartEmail email = new MultiPartEmail();
email.setHostName(sHostName);
email.addTo("bob@bob.com");
email.addFrom("andy@andy.com");
email.setSubject("the subject");
email.setMsg("the message");
byte[] documentFile = /* ... */;
String filename = "my file.pdf";
String description = "this is my file";
email.attach(new ByteArrayDataSource(myPDF, "application/pdf"), filename, description, EmailAttachment.ATTACHMENT);
email.send();
问题是,另一端的人说“标头信息的 Content-Transfer-Encoding 值为“7bit”,它需要“引用打印”。
我的问题是,如何进行此更改,以便以适当的方式附加文件?
抢