What is the best format to use when creating a mailing list for use in Word 2007?
I am writing a web application (Java) that allows users to select contacts. Contact details can be downloaded (currently in CSV format) and used for mail merge in Word 2007.
I would like to use a format that is slightly more "robust" than CSV. Those of you who are not in English will know the comma and semicolon problems!
What format would you use?
source to share
Depending on the reasons your user is doing the mail merge, you might want to move all the work to the server. When the user selects contacts and clicks OK, have the server merge mail and create a document for the user and send it to them. Docmosis or JODReports can provide this capability. You can also let the user choose different templates, or if you're really generous, let users upload their own.
source to share