- © 2026 Mailsoftly Inc. The name "Mailsoftly" and the Mailsoftly logo are registered trademarks of Mailsoftly Inc.
Microsoft Word Guide
Send personalized letters, labels, envelopes, and emails straight from Microsoft Word without touching a single record by hand.
by Isabella Torres · Last updated: 2026-05-15Mail merge in Word combines a main document template with a data source like Excel, Outlook contacts, or a CSV to produce batches of personalized letters, labels, envelopes, emails, and directories. The built-in Step by Step Mail Merge Wizard guides you through six stages: select document type, choose starting document, select recipients, write and insert merge fields, preview, and complete. For high volume personalization, Mailsoftly offers a free plan with 500 contacts and 2,000 emails per month plus real human support.
Mail merge in Microsoft Word lets you create hundreds (or thousands) of personalized letters, labels, envelopes, and email messages from a single template. Instead of typing each recipient’s name and address individually, Word pulls data from a spreadsheet or database and fills in the blanks automatically.
Whether you are sending fundraising appeals, client invoices, event invitations, or employee onboarding packets, mastering mail merge in Word eliminates hours of manual work. This guide walks through every step, from choosing your document type to previewing and printing the final output.
If you want to understand the broader concept first, our guide on What Is Mail Merge? covers the fundamentals across every platform.
New here? Start with our primer on Email Marketing Fundamentals for the fundamentals, then come back to this guide.
Quick context: Mailsoftly offers transparent pricing, free hands-on migration, and human support. 500 contacts and 2,000 emails per month, no credit card.
Start free with Mailsoftly →
Key Takeaways
Mail merge is a feature built into Microsoft Word that combines a main document (your template) with a data source (your recipient list) to produce a batch of personalized documents. Each document in the batch is identical in layout but unique in content, because Word swaps placeholder fields for real data row by row.
The concept dates back to early word processors, but modern Word versions have refined the process into a guided wizard. You choose a document type, connect your data, insert merge fields where personalization belongs, preview the results, and then print or send.
Personalized body text with recipient name, address, account details
Avery and custom label sheets populated from a contact list
Addressed envelopes printed directly from your mailing list
Personalized messages sent through Outlook directly from Word
Word supports five document types in mail merge: letters, email messages, envelopes, labels, and directories (catalogs). Letters are the most common starting point, but the workflow is nearly identical for all five types.
Read enough? Try Mailsoftly free with 500 contacts and 2,000 emails per month, no credit card.Start free with Mailsoftly →
The fastest way to run a mail merge in Word is through the built in wizard. Open a blank or existing document, go to the Mailings tab, and click Start Mail Merge. Choose Step by Step Mail Merge Wizard from the dropdown. The wizard opens a pane on the right side of your screen and walks you through six stages.
The Six Stages of Mail Merge
The wizard asks what kind of document you want to create. For most business correspondence, select Letters. If you are sending personalized emails through Outlook, choose E-mail messages. Labels and envelopes follow the same general process, but Word adds a label configuration dialog where you specify the brand and product number of your label sheets.
You have three choices: use the current document (most common), start from a template, or open an existing file. If your letter template already exists, open it before starting the wizard. Word will use whatever is already on screen as the main document.
This stage connects your document to its data source. The most popular option is Use an existing list, which lets you browse to an Excel file, Access database, or delimited text file. If your contacts live in Outlook, select Select from Outlook contacts. You can also type a new list directly inside the wizard, though this is practical only for very small batches. If you want to learn more about preparing your spreadsheet, we have a detailed walkthrough on how to do mail merge with excel that covers formatting, column headers, and common pitfalls.
Now you compose (or finalize) your letter. Place your cursor where personalized content belongs, then click Insert Merge Field on the Mailings tab. A dropdown lists every column header from your data source. Select a field, and Word inserts a placeholder like «First_Name».
Repeat for every personalized element: salutation, address block, account number, donation amount, or any custom column in your spreadsheet. Word also offers an Address Block button that combines name and address fields into a formatted block, and a Greeting Line button that generates a salutation with fallback text for missing names.
The preview stage replaces field codes with actual data from the first record. Use the arrow buttons to step through records and confirm the output looks correct. This is where you catch problems: truncated names, missing fields, odd spacing. Fix them now before printing 500 copies.
Click Print to send all merged documents directly to your printer. Click Edit Individual Letters to generate a new Word document containing every merged letter (one per page), which lets you tweak individual pages before printing. For email, Word hands the messages off to Outlook and sends them one by one.
The most common cause of mail merge failures is a poorly formatted data source. Word is surprisingly strict about how it reads spreadsheets. Follow these rules before you connect your data.
| Rule | Why It Matters |
|---|---|
| One header row only | Word treats the first row as field names. Merged rows or blank first rows break the field mapping. |
| No blank rows in the middle | Word stops reading data at the first completely empty row, silently dropping every record below it. |
| No merged cells | Merged cells in Excel confuse the column mapping. Unmerge everything before saving. |
| Format ZIP codes as text | Excel drops leading zeros from ZIP codes (e.g., 01234 becomes 1234). Format the column as Text before entering data. |
| Use short, descriptive headers | Headers become your merge field names. “First_Name” is clearer than “Column B” when inserting fields. |
| Save as .xlsx (not .csv) | Word reads .xlsx natively. CSV files sometimes cause encoding issues with special characters and accented names. |
If your data lives in Google Sheets, export it as an .xlsx file before connecting to Word. Google Sheets’ native format is not compatible with the mail merge connection dialog.
Keep a backup of your original spreadsheet before any cleanup. This protects you if you accidentally delete rows or reformat columns during preparation.
Inserting a merge field is straightforward, but controlling how the data appears requires a few extra techniques. Word uses field codes under the hood, and you can modify them to format dates, numbers, and text exactly the way you want.
By default, Word may display dates in an unexpected format (like a serial number from Excel). To force a specific format, right click the merge field, select Toggle Field Codes, and add a format switch. For example, { MERGEFIELD Date \@ "MMMM d, yyyy" } displays “January 15, 2026” instead of “1/15/2026” or “46035”.
Numeric fields often lose their formatting when merged. A donation amount stored as 1500.00 in Excel may appear as 1500 in Word. Add a numeric switch: { MERGEFIELD Amount \# "$#,##0.00" } to display $1,500.00 with the currency symbol and two decimal places.
You can display different text based on a field value. This is useful for varying the salutation based on gender, adjusting a paragraph for different membership tiers, or hiding a section entirely when a field is empty.
// Example: Conditional greeting based on a Gender field
{ IF { MERGEFIELD Gender } = “Female” “Dear Ms. { MERGEFIELD Last_Name },” “Dear Mr. { MERGEFIELD Last_Name },” }
To insert an IF field manually: press Ctrl+F9 to create empty field braces, then type the IF expression inside them. Nested merge fields each need their own pair of field braces (press Ctrl+F9 again for each one).
Address Block
Combines name + full address in one formatted block
Greeting Line
Auto salutation with fallback text for missing names
First_Name
Inserts the recipient’s first name anywhere in the body
Custom Fields
Any column header: account number, expiry date, tier, etc.
Even experienced Word users hit snags with mail merge. Here are the issues that come up most often, along with their fixes.
One more thing: always close the Excel file before starting the merge connection in Word. Word sometimes cannot establish a read lock on a file that is already open in Excel, especially on networked drives.
Word can send personalized emails through Outlook, but the feature comes with significant limitations. When you select “E-mail messages” as the document type and complete the merge, Word passes each message to Outlook’s outbox. The emails are sent as plain HTML rendered from your Word document.
What Word Email Merge Does Well
What Word Email Merge Cannot Do
If your use case is purely internal (onboarding packets, internal announcements, team updates), Word’s email merge can work. For external marketing or sales outreach, the lack of tracking, compliance tools, and deliverability management makes it unsuitable. You also risk triggering Outlook sending limits if you attempt to send more than a few hundred messages.
For those interested in sending personalized emails through Google’s ecosystem instead, our guide on mail merge with Gmail covers the process and its own set of limitations.
Word mail merge excels at printed documents: letters, labels, envelopes, and directories. It is a reliable, free (assuming you have Office) solution for physical mailings. But it was never designed for digital marketing at scale.
Here are the signals that you have outgrown Word’s mail merge for email.
Word Mail Merge vs. Dedicated Email Platforms
| Feature | Word + Outlook | Email Marketing Tool |
|---|---|---|
| Personalization | Basic fields | Fields + conditional blocks + dynamic content |
| Tracking | None | Opens, clicks, bounces, conversions |
| Compliance | Manual | Built in unsubscribe, physical address, consent tracking |
| Recipient limit | 300 to 500 per day | Thousands to millions |
| Template design | Word formatting only | Drag and drop HTML editor, mobile preview |
| Cost | Included with Office | Free tiers available, paid plans from $39/mo |
If you are at the point where you need tracking, compliance, and volume, a dedicated email marketing platform is the logical next step. Mailsoftly’s mail merge tool lets you keep the personalization workflow you already know from Word while adding analytics, scheduling, and deliverability management on top.
Once you are comfortable with basic merges, these techniques let you handle more complex scenarios without switching to a different tool.
In Stage 3 of the wizard, click Edit Recipient List to open the Mail Merge Recipients dialog. Here you can filter records (e.g., only recipients in California), sort by last name, or manually uncheck individual rows you want to exclude from this batch. This saves you from creating a separate spreadsheet for each subset of your mailing list.
The Rules dropdown on the Mailings tab gives you access to conditional logic beyond simple IF fields. Skip Record If excludes records matching a condition without manually deselecting them. Next Record and Next Record If let you place multiple records on a single page (useful for directories and catalogs). Set Bookmark stores a merge field value for reuse later in the document.
Instead of printing, you can merge to a new document and then save that document as a PDF. This is useful when you need to email individual personalized PDFs (invoices, contracts, certificates). Word creates one continuous document with page breaks between records. You can use a VBA macro or a third party add in to split this into individual PDF files per recipient.
Pro Tip: Save Your Main Document Separately
Always save your main document (the template with merge fields) as its own file before completing the merge. The merged output document does not retain the merge field connections. If you need to run the same merge again next month with updated data, you will need the original template file with field codes intact.
Labels and envelopes follow the same six stage process, but with a few extra configuration steps at the start.
When you select Labels as your document type, Word asks you to choose a label vendor and product number (e.g., Avery US Letter, product 5160). This configures the page layout with the correct margins, rows, columns, and label dimensions. After connecting your data source, insert the Address Block or individual fields into the first label cell, then click Update All Labels to propagate the fields to every label on the page.
Selecting Envelopes prompts you to choose an envelope size (Size 10 is standard for US business mail). Word creates a document with the delivery address area pre-positioned. Insert merge fields into the delivery address block, and optionally add a return address. Preview to confirm alignment, then print. Feed envelopes into your printer according to the manufacturer’s loading instructions.
For both labels and envelopes, a test print on plain paper (held up against the label sheet or envelope) saves expensive materials if the alignment is off by even a millimeter.
For the broader picture on this topic, see our complete Email Marketing Fundamentals guide, which covers strategy, fundamentals, and advanced playbooks.


Most mail merge failures come from a poorly formatted data source. Word stops reading at the first completely empty row, silently dropping every record below it, and merged cells confuse column mapping. Use one header row only, remove blank rows and merged cells, format ZIP codes as text, and save as .xlsx to prevent nearly all of these problems.
Yes. Word supports several data sources beyond Excel. You can use Outlook contacts, an Access database, a delimited text file (.csv or .txt), or type a new recipient list directly inside the Mail Merge Wizard. That said, Excel is the most common and most flexible option for most users.
For printed documents (letters, labels, envelopes), there is no hard recipient limit. Word will merge as many records as your data source contains, though very large files (over 10,000 rows) may slow down the preview step. For email merges through Outlook, you are limited by Outlook’s daily sending quota, which is typically 300 to 500 messages depending on your account type.
No. Mail merge is only available in the desktop version of Microsoft Word (Windows and Mac). Word Online does not support the Mailings tab or the Mail Merge Wizard. If you only have access to the browser version, you will need to use a third party add in or a different tool entirely.
Word does not natively support merging different images per recipient. However, you can use an INCLUDEPICTURE field with a file path stored in your spreadsheet to pull unique images for each record. The syntax is { INCLUDEPICTURE "{ MERGEFIELD ImagePath }" }. This technique requires all images to be accessible at the specified file paths during the merge.
Word mail merge is designed for printed documents and simple Outlook emails. It has no tracking, no compliance automation, no scheduling, and no deliverability features. Dedicated email marketing tools like Mailsoftly handle all of these, plus offer drag and drop editors, responsive templates, segmentation, and analytics. Word is the right tool for physical mail. Email marketing platforms are the right tool for digital outreach.
Ready to switch?Start free with Mailsoftly →
500 contacts, 2,000 emails per month. Free hands-on migration. No credit card.

Ready to boost your email marketing?
Start sending beautiful, targeted emails that convert — free to get started.
Try Mailsoftly FreeNo credit card required