I am trying to extract text from an eml file using the Aspose Word API. While doing that, I get an extra line on the top of the text file which contains the From Address. Please let me know how to remove this additional line at the top of the text file.
Here is the code I used
Aspose.Email.MailMessage message = Aspose.Email.MailMessage.Load(emailPath);
message.Save(outputFilePath, SaveOptions.DefaultMhtml);
Aspose.Words.Document textDocumnents = new Aspose.Words.Document(outputFilePath);
textDocumnents.Save(textFilePath, Aspose.Words.SaveFormat.Text);
4.Extra text highlighted image.png (38.3 KB)Aspose support.7z (52.0 KB)