Create personalized documents, emails, and reports with Mail merge API using our solution – powerful C++ library. Simply merge Word and PDF templates using C++. The result of the Mail merge operation can be saved in DOCX, PDF, HTML and other popular formats.
Our product provides a powerful Mail merge API to build your own advanced software solution. Whether you need to create personalized emails for clients, generate a report based on the received data set or create a personalized document for any purpose, our product API can easily handle it.
With our C++ solution, you can perform a Mail merge operation in C++. To do this, use the merge template in Word, PDF or other file format and the source data.
Note that the Mail merge template must contain the merge fields into which the source data will be inserted after the Mail merge operation is executed.
Use Mail merge to automate email creation and sending bulk emails. To do this, create an appropriate Mail merge template with merge fields and then automate the mailing by substituting data from your source. For example, you can create an email template with Mail merge fields instead of your customer names. Using Mail merge, you can fill in these fields with client names pulled from your data source.
So you get the fast and easy way to create thousands of personalized emails in seconds!
You can generate reports with Mail merge in C++. You still need to create a Word, PDF or other file format Mail merge template with merge fields. Such fields will be used to substitute data from the data source and build a report.
To see how the C++ Mail merge operation works using our C++ solution, import Word or PDF template with merge fields and data in XML or JSON format. After performing the code, save the merge result generated using our product API in a convenient format – DOCX, HTML, PDF and so on:
using namespace aspose::words::cloud;
auto config = std::make_shared<ApiConfiguration>(L"####-####-####-####-####", L"##################");
auto wordsApi = std::make_shared<WordsApi>(config);
auto template = std::shared_ptr<std::istream>(new std::ifstream(std::filesystem::path(L"Input1.docx"),
std::istream::binary));
auto data = std::shared_ptr<std::istream>(new std::ifstream(std::filesystem::path(L"Input2.docx"),
std::istream::binary));
std::shared_ptr<requests::ExecuteMailMergeOnlineRequest> executeMailMergeOnline(
new requests::ExecuteMailMergeOnlineRequest(
template, data
)
);
wordsApi->executeMailMergeOnline(executeMailMergeOnline);
Clone Aspose.Words Cloud SDK for C++ source code from GitHub. You can find detailed information on building and configuring the SDK in the "How to use the SDK" section.
To quickly get the necessary security credentials and access our REST API, please follow these Instructions in the documentation.
Refer to the Repository Documentation to see the details.