Our solution provides a powerful platform independent API. Use our Mail merge document API to develop high-level software for C++ platform. This is a powerful software solution for merging templates in Word and PDF formats and data from custom data sources and further exporting the result to DOCX, PDF, HTML and other popular formats using C++.
Powerful C++ library to use mail merge operation with mustache template and user data.
This C++ SDK allows you to use Mustache templates based on the Mustache syntax and execute mail merge operations on this logic-less template to fill the document with data from various data sources. You can export the result into the required document format: DOCX, PDF, HTML and other popular formats using C++.
Mustache is an alternative syntax for mail merge templates that consists of tags. To create a mustache template, use tags specified by the double braces as follows:
{{FirstName}}
In this case, you can find such tags inside the template and replace them with values determined by the key inside the tag. It is called logic-less templates because there are no if statements, else clauses, or for loops.
Mustache syntax is the only option that can be used with HTML or TXT templates that do not contain any fields. This means that with some template formats, such as Word templates, you can use both fields and mustache syntax, and with others, such as HTML or TXT, only mustache template syntax.
You can try our solution to perform mail merge operation with a mustache template in C++. After running the code, export the mail merge result using C++ to a convenient file format such as DOCX or PDF:
dotnet add package Aspose.Words.Cpp
Copy
using namespace Aspose::Words;
auto fields = MakeArray<String>(
{
});
auto values = MakeArray<SharedPtr<Object>>(
{
});
auto doc = MakeObject<Document>(u"Input.docx");
doc->get_MailMerge()->set_UseNonMergeFields(true);
doc->get_MailMerge()->Execute(fields, values);
doc->Save(u"Output.docx");
There are three options to install Aspose.Words for C++ to your developer environment. Please choose one that resembles your needs and follow the step-by-step instructions:
You can use this C++ library to develop software on Microsoft Windows, Linux and macOS operating systems:
If you develop software for Linux or macOS, please check information on additional library dependencies (fontconfig and mesa-glu open-source packages) in Product Documentation.
You can perform Mail merge operation for other file formats: