wpf-120123-controls-and-libraries-spreadsheet-mail-merge.md
The Mail Merge functionality enables you to automatically generate a set of documents based on a single template and include unique data values retrieved from a data source in each document. This feature can be useful for a variety of business requirements, such as personalized letters, and composing catalogs and reports.
Important
The WPF Spreadsheet does not provide mail-merge UI tools (like the WinForms SpreadsheetControl) allowing end-users to design templates, bind them to data sources and preview mail merge results. However, you can generate mail-merge documents in code using the control’s API as shown in the How to: Perform a Mail Merge example.
To perform a mail merge, you need a template and a data source.
Use the template workbook’s IWorkbook.MailMergeOptions property to get access to the mail merge options.
The template workbook’s IWorkbook.GenerateMailMergeDocuments method finalizes the mail merging process. It returns a collection of resulting workbooks (if the Single Sheet or Multiple Sheets mail merge mode is used, the collection contains a single workbook). You can open the resulting workbook or save it to a file or stream.