我想使用带有2个附件的Javamail发送电子邮件。其中一个是json文件,另一个是txt文件(logcat.txt)。 logcat.txt的大小约为1mb。
如果我的代码中有addAttachment(multipart,reportPath,"logcat.txt");
,则不会发送任何电子邮件。如果我删除addAttachment(multipart,reportPath,"logcat.txt");
,它就可以了。
当json文件变大时,在一点约500kb时,它也不会发送。
我的代码:
public synchronized void sendReport(String subject, String body, String filepath, String filename, String reportPath, String sender, String recipients){
try {
Multipart multipart = new MimeMultipart("mixed"); //try adding "mixed" here as well but it doesn't work
MimeMessage message = new MimeMessage(session);
message.setSender(new InternetAddress(sender));
message.setSubject(subject);
//body
BodyPart messageBodyPart2 = new MimeBodyPart();
messageBodyPart2.setText(body);
Log.d(TAG, "sendReport: " + reportPath);
//this prints sendReport: /storage/emulated/0/Android/data/**app package name**/files/LOG-1472631395.json
Log.d(TAG, "sendReport: " + filepath);
//sendReport: /storage/emulated/0/Android/data/**app package name**/files/logcat.txt
addAttachment(multipart,filepath,filename);
addAttachment(multipart,reportPath,"logcat.txt");
multipart.addBodyPart(messageBodyPart2);
message.setContent(multipart);
if (recipients.indexOf(',') > 0)
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipients));
else
message.setRecipient(Message.RecipientType.TO, new InternetAddress(recipients));
Transport.send(message);
} catch (Exception e) {
e.printStackTrace();
}
}
private static void addAttachment(Multipart multipart, String filepath, String filename) throws MessagingException
{
DataSource source = new FileDataSource(filepath);
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(filename);
multipart.addBodyPart(messageBodyPart);
}
我还使用另一种方法发送附件,但它也不起作用:
private static void addAttachment(Multipart multipart, String filepath, String filename) throws Exception
{
MimeBodyPart mimeBodyPart = new MimeBodyPart();
mimeBodyPart.attachFile(filepath);
mimeBodyPart.setFileName(filename);
multipart.addBodyPart(mimeBodyPart);
}
有没有人知道如何解决这个问题?提前谢谢。
答案 0 :(得分:1)
//In this list set the path from the different files you want to attach
String[] attachments;
Multipart multipart = new MimeMultipart();
//Add attachments
if(attachments != null && attachments.length > 0) {
for (String str : attachments) {
MimeBodyPart messageBodyPart = new MimeBodyPart();
DataSource source = new FileDataSource(str);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(source.getName());
multipart.addBodyPart(messageBodyPart);
}
}
message.setContent(multipart);
我上传大文件时没有问题,您可以尝试使用此代码。
答案 1 :(得分:0)
我使用我客户的私人邮件服务器发送电子邮件,但它没有显示我能看到的任何错误(因为它是公共邮件服务器)。然后我使用Google Mail服务器,这是从gmail服务器到我的电子邮件帐户的回复:
永久性失败的技术细节:Google试图提供您的 消息,但服务器拒绝接收域 mailinator.com来自mail2.mailinator.com。 [45.79.147.26]。
其他服务器返回的错误是:552 5.3.4邮件大小 超过固定限额
所以这是因为域mailinator.com有一些邮件大小限制所以它不会出现。然后我将内容发送到gmail电子邮件帐户,它可以正常运行。