Prepare template using Open Office Writer?

Hello there,

Is it possible to create template to define the various merge fields using Open Office Writer?

Thank you,
Ben

Hi Ben,

Thanks for your inquiry. You can create your template document using MS Word or Open Office and use Aspose.Words to perform mail merge operation. Please read following documentation links for your kind reference.
https://openoffice.blogs.com/openoffice/2006/02/mail_merge_labe.html
https://docs.aspose.com/words/net/mail-merge-and-reporting/

You can also use Aspose.Words to insert mail merge field in the document. Please check the following code example.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertField(@"MERGEFIELD MyFieldName \* MERGEFORMAT");

Please let us know if you have any more queries.