

Outlook mail merge excel how to#
To demonstrate, we’ll send a cold outreach sales email to a list of leads.Ī quick summary of how to set up an email merge from Excel: This blog post will walk you through creating and sending a personalized mail merge step by step. They can also save you time on tasks like mailing personalized letters, envelopes, and creating mailing labels. Mail merge is typically used to send mass emails that have been personalized to their recipient (like replacing “Hello! 👋” with “Hey John!”). Performing a mail merge using Excel and Word gives you all of the functionality of a mailing list, without the need to configure an expensive email platform. Locate the object library in the list and add a check mark to it.A mail merge is a fantastic way to save you time when you’re emailing a large recipient list.If you receive a "User-defined type not defined" error, you need to set a reference to another object library. Set a reference to other Object Libraries Open the VBA Editor by pressing Alt+F11 on your keyboard. In older versions look at Tools, Macro Security.Īfter you test the macro and see that it works, you can either leave macro security set to low or sign the macro. To check your macro security in any Office 2010 application and newer, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. You can sign the macro when it is finished and change the macro security to notify.

You could choose the option Notification for all macros, then accept it each time you restart Outlook, however, because it's somewhat hard to sneak macros into Outlook (unlike in Word and Excel), allowing all macros is safe, especially during the testing phase. The macros will not work with the top two options that disable all macros or unsigned macros. Body = Replace(.Body, "", strAcctMgrName)įirst: You need to have macro security set to the lowest setting, Enable all macros during testing. Set olItem = olApp.CreateItemFromTemplate(appdata & "\Microsoft\Templates\macro-test.oft") 'Set olItem = olApp.CreateItem(olMailItem) 'Create Mail Item and view before sending StrAcctMgrName = xlSheet.Range("F" & rCount)ĪcctMgrEmail = xlSheet.Range("G" & rCount) 'strAttachment = strAttachPath & xlSheet.Range("E" & rCount) StrFirstname = xlSheet.Range("A" & rCount) Set olApp = CreateObject("Outlook.Application")ĭo Until Trim(xlSheet.Range("A" & rCount)) = "" Set olApp = GetObject(, "Outlook.Application") StrAttachPath = enviro & "\Documents\Send\" ' you need to set a reference to Outlook Object Library (Yes, I know, I'm not creative with demo values and prefer to use Excel's features to create demo values.) The finished merge will look like the following.

Using unique values allows us to use VBA's Replace function.
Outlook mail merge excel update#
While you could use standard merge fields or bookmarks, you would need to use the Word Object Library to update the fields. It also sends the message From an address in the worksheet.Ĭreate an Outlook template, entering unique values where the merge fields would be entered. This macro reads values from an Excel worksheet and sends a mail merge, replacing unique values in the Outlook template with values in the worksheet.
