I have other requirements. Can you help me out on this or any other alternative is appreciated,
1) Requirement: Sending document content in the email body without changing the styles and document content.
Can we convert Document to pure HTML. So, that I can use this HTMLto send in Email body with the same format.
2) Can we load the document from json string. That was created from the following code
WordDocument document = WordDocument.Load(processTuple.Item1, GetFormatType(processTuple.Item2.ToLower()));
string json = Newtonsoft.Json.JsonConvert.SerializeObject(document);
I will be saving the above json in database. In a new request, after fetching the data from database in server side, I will modifying some styles and content and convert back to HTML format.