我试图用春季邮件的JavaMailSender发送邮件。我首先实现了没有附件的版本,但现在我需要添加附件。但是,虽然附件被添加到MimeMessageHelper(我可以在调试模式上看到部件是加法器),但附件不会随邮件一起发送。邮件主题和内容被正确发送到接收者但附件丢失。下面是我的代码:
try {
MimeMessageHelper messageHelper = new MimeMessageHelper(this.mimeMessage,true, CharEncoding.UTF_8);
for(Mail mails : unsentMails) {
try {
/*
Here, we first get the list of receivers and main targets according to their type information
Then, we add them to messageHelper
*/
Set<Attachments> attachments = mails.getFk_attachments();
for(MailReciever item : mails.getRecievers()) {
if(item.getType().equals("cc")) {
messageHelper.addCc(item.getAddress());
}
else {
messageHelper.addTo(item.getAddress());
}
}
for(Attachments file : attachments) {
messageHelper.addAttachment(file.getFileName(),
new ByteArrayResource(file.getContent()),file.getContentContentType());
try {
FileUtils.writeByteArrayToFile(new File("C:\\Users\\fatih.dogmus\\Desktop\\deneme\\"+file.getFileName()),file.getContent());
} catch (IOException e) {
e.printStackTrace();
}
}
FileSystemResource fileSystemResource = (new FileSystemResource(new File("C:\\Users\\fatih.dogmus\\Desktop\\hebele.txt\\")));
messageHelper.addAttachment(fileSystemResource.getFilename(),fileSystemResource );
messageHelper.setSubject(mails.getSubject());
messageHelper.setFrom(this.userName,this.sendingName);
mimeMessage.setContent(mails.getContent(),"text/html");
this.javaMailSender.send(this.mimeMessage);
mails.setStatus(EmailStatus.SUCCEEDED);
for(MailReciever item : mails.getRecievers()) {
item.setStatus(EmailStatus.SUCCEEDED);
item.setLastAttemptDate(zonedDateTime);
}
}
catch (MailException mailException) {
for(MailReciever item : mails.getRecievers()) {
item.incrementAttemptCount();
item.setStatus(EmailStatus.ENQUEUED);
}
mails.incrementAttemptCount();
mails.setStatus(EmailStatus.ENQUEUED);
if(mails.getSendingAttempts() == 3) {
mails.setStatus(EmailStatus.FAILED);
for(MailReciever item : mails.getRecievers()) {
item.setStatus(EmailStatus.FAILED);
item.setLastAttemptDate(zonedDateTime);
}
System.out.println("Failed to send mail. Aborting.");
}
else {
System.out.println(String.format("Attempt count is %d. Will try again", mails.getSendingAttempts()));
}
mailException.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} finally {
mailRepository.save(mails);
mailRecieverRepository.save(mails.getRecievers());
}
}
}
catch (MessagingException e) {
e.printStackTrace();
}
我从数据库中获取所需的数据,如邮件本身,接收器和附件。附件存储在带有clob的数据库中(也称为byte [])。我也尝试从我的本地系统添加一个文件,但这也不起作用。我也尝试将从数据库中读取的文件写入我系统中的文件,这似乎也可以正常工作,因此数据库系统正在按预期工作。保存和检索看起来不像问题。以下是带有.yml文件的邮件配置
mail:
host: smtp.gmail.com
port: 587
name: ******
username: ******
password: ********
protocol: smtp
tls: true
properties.mail.smtp:
auth: true
starttls.enable: true
ssl.trust: smtp.gmail.com
name字段只是一个字段,用于设置邮件名称字段而不是邮件本身。
谢谢。
答案 0 :(得分:3)
正如法提赫所说,我遇到了同样的问题,您必须将文本放入帮助程序中,而不是放在mimeMessage中。
messageHelper.addAttachment(fileSystemResource.getFilename(),fileSystemResource );
messageHelper.setSubject(mails.getSubject());
messageHelper.setFrom(this.userName,this.sendingName);
// this is correct
messageHelper.setText(mails.getContent(),true);
// this is wrong, it will overwrite the attachments
// mimeMessage.setContent(mails.getContent(),"text/html");
答案 1 :(得分:-1)
好的,我解决了这个问题。问题是我直接设置了mimeMessage的内容,因此它覆盖了addAttachment和其他内容明智的配置。