I am charged with the following task in a Rails project. Clients will have templates in Word doc format which have boilerplate text and images with company logos and letterheads, etc... They will be able to upload these templates. What I need to do is read these templates, inject the relevant customer data, quote and sales information into them, and create a pdf file which is then emailed to the appropriate party.
The major stumbling block is getting the text and images from the Word doc into html and preserving the layout. I want to avoid using third party software to convert the doc to html. I am looking for a way to handle everything in my Rails app. Is such a thing possible? I know that M$ is bad and all but there is a huge user base of MS Office folk in the business community that needs to be interfaced with.
I have a very good handle on using WickedPDF and PDFKit and I am sure I could figure out Prawn if need be.
I will sincerely appreciate any pointers and/or suggestions.