Я могу получить все сообщения, html и вложения в письме, но текст сообщения принимается в виде текстового файла.
Я хочу, чтобы сообщение отображалось в почте. Любая помощь будет принята.
final String subject = "Automation Execution Report";
Текст сообщения, которое необходимо отправить
StringBuilder msg = new StringBuilder();
msg.append("Hi All"+"\n");
msg.append("We have executed the Automation Suite in current
build."+"\n");
msg.append("Please find the automation report in the attachment");
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
//below code only requires if your want cc email address
message.setSubject(subject);
File dir = new File(System.getProperty("user.dir")+
File.separator+"test_reports");
File[] files = dir.listFiles();
File lastModifiedFile = files[0];
for (int i = 1; i < files.length; i++) {
if (lastModifiedFile.lastModified() < files[i].lastModified()) {
lastModifiedFile = files[i];
}
}
String attach = lastModifiedFile.toString();
Создано несколько частей
Multipart parent = new MimeMultipart("alternative");
Multipart child=new MimeMultipart("mixed");
message.setSubject(subject);
Настраиваемый отчет в формате html, печатаемый на почте
MimeBodyPart htmlpart = new MimeBodyPart();
StringWriter writer = new StringWriter();
IOUtils.copy(new FileInputStream(new File("D:\\SVN CODE\\test-
output\\customized-emailable-report.html")), writer);
htmlpart.setContent(writer.toString(), "text/html");
child.addBodyPart(htmlpart);
Текст сообщения, которое должно быть напечатано на почте
MimeBodyPart txtpart=new MimeBodyPart();
txtpart.setContent(msg.toString(), "text/plain");
child.addBodyPart(txtpart);
//Adding the child multipart to parent multtipart
MimeBodyPart sub=new MimeBodyPart();
sub.setContent(child);
parent.addBodyPart(sub);
//Attachment part
BodyPart attachPart = new MimeBodyPart();
DataSource source = new FileDataSource(attach);
attachPart.setDataHandler(new DataHandler(source));
attachPart.setFileName("Test Automation report.html");
parent.addBodyPart(attachPart);
Настройка содержимогок сообщению
message.setContent(parent);
System.out.println("Sending");
Transport transport = session.getTransport("smtp");
transport.connect(host,25,from, password);
transport.sendMessage(message, message.getAllRecipients());
transport.close();
System.out.println("Done");
}
[1]: https://i.stack.imgur.com/InHyZ.png
Please advise as to how the message text can be printed on the mail