IMAP: Error reading messages with parameter retrieveRecursively set to True
problem with outlook 2013 ost file
Unable to save LastModified to Calendar Item
Speed of message retrieval from PST
Blank result .msg file
An example of creating .msg file Aspose.Email.dll is explained below:
- We are using Trial version of Aspose.Email.dll 5.4.0.0 (latest from NuGet)
- Language used - DotNet (C#)
- Sample html content (see attachment "SampleHtmlContent.txt")
- Sample code in C# (see attachment "C# Sample code.docx")
Issue we are facing:
- When we create a .msg file with the content of "Content.txt" we are getting no data (blank email body) in result .msg file
- If we convert entire content to lower case we get the expected .msg file but the entire content is in lower case.
So the issue could lbe with the HTML tags, attributes or class names as we have capittal and Pascal case data in SmapleHtmlContent.txt, Aspose.Email.dll is not able to parse the html body correctly. But as we convert the entire content to lower case we are able to create the expected outlook file.
Shared Calendars and public calendars
IMAP Idle command.
issue
Java email library - HTML content in body is not consumed
Aspose converting MSG to PDF without inline images
FileInputStream fiStream = null;
File tempDocOut = null;
try {
tempDocOut = File.createTempFile("mcfile", null);
foStream = new FileOutputStream(tempDocOut);
MailMessage mail = MailMessage.load(msgFilePath);
mail.save(foStream, SaveOptions.getDefaultMhtml());
foStream.close();
fiStream = new FileInputStream(tempDocOut);
LoadOptions lo = new LoadOptions();
lo.setLoadFormat(LoadFormat.MHTML);
Document doc2 = new Document(fiStream, lo);
doc2.save(pdfFilePath, com.aspose.words.SaveFormat.PDF);
} finally {
try {
IOUtils.closeQuietly(fiStream);
IOUtils.closeQuietly(foStream);
tempDocOut.delete();
} catch (Exception e) {
e.printStackTrace();
}
Outlook 2010 Crashes when Opening PST
Font error in email opening
Multiple recipient header in eml file are not recognized
Hello,
I am using aspose email to convert eml files into pdfs. Now I have encountered
some .eml files that specify multiple recipients (To: header) each in a separate
line. However aspose only delivers the first one.
I attached my test case. Would you please look into this issue?
Email Sender name is not similar in the pdf rendition, to the Source eml file
Aspose 16.11.0.0 is very slow as compare to Apose 6.4.0.0
Performance of Adding Recipients
I can create a MSG file with about 2500 recipients and set about 36 Mapi properties per recipient in under a minute. When I get to 5400 recipients it takes about 15 minutes. When I get to 9000 it takes about an hour to build the MSG file.
I have a customer with > 10000 recipients and I can't have them wait an hour to generate a single MSG file. I'm hoping you can look into this performance issue and offer some suggestions to enhancing the performance.
Thanks,
//Christopher
Convert eml to MSG format.
Hi,
Currently we are facing issue on production while converting eml to msg format in java web application.
previously we are downloading the eml file after clicked the "Open" button on front end.
We are getting byte array of eml file. so we want convert this byte array into MSG format.
Could you please provide the solution for this requirement?
Thanks in advance.
Regards,
RSY
UTF8 encoding issues converting EML to MSG
convert .eml to .msg
Hi Team,
I am trying to convert .eml to .msg format and upload the .msg to our document management system(LiveLink).
When I download and save the file[ from(.eml)/to(.msg) ] in disk and upload to LiveLink it works fine but when I convert and save as stream no error from aspose but our document management system is unable to recognize the format .
Please refer to the below format [.net framework 4.5]
Stream stream = new MemoryStream(emailMsg.MimeContent.Content);
MemoryStream msgstream = new MemoryStream();
Aspose.Email.Mail.MailMessage objmessage = Aspose.Email.Mail.MailMessage.Load(stream, MailMessageLoadOptions.DefaultEml);
objmessage.Save(msgstream,MessageFormat.Msg );
Can you please check and revert to me what is the issue .
Convert eml to msg
//load mail message
MailMessage eml = MailMessage.Load("test.eml");
//convert to MapiMessage
MapiMessage msg = MapiMessage.FromMailMessage(eml);
//save to msg file
msg.Save("test.msg");
I need to be able to do the same thing in Java. Here are my problems:
1. I do not see a MailMessage class in the JavaDocs
2. The MapiMessage class does not have save() or fromMailMessage() methods
3. I would like for the save method to be able to accept an OutputStream as well as the name of a file since I need to insert the msg data into LiveLink using one of their API's and if I can get an OutputStream then I can write it to a byte[] which I can pass to LiveLink directly without writing an intermediate file.