How to send email with multiple attachments attached in Excel?
This article is talking about sending an email through Outlook with multiple attachments attached in Excel.
Send email with multiple attachments attached in Excel with VBA code
Send email with multiple attachments attached in Excel with VBA code

Please do as follows to send an email with multiple attachments attached in Excel.
1. Please insert a command button by clicking Developer > Insert > Command Button (ActiveX Control). See screenshot:
2. After inserting the Command Button, please right click it and select View Code from the context menu.
3. In the opening Microsoft Visual Basic for Applications window, please click Tools > References as below screenshot shown.
4. In the References – VBAProject dialog box, please find and check the Microsoft Outlook Object Library option, and then click the OK button.
5. Then replace the original code in the Code window with below VBA code.
VBA code: Send email attached with multiple attachments in Excel
Private Sub CommandButton1_Click() Dim xStrFile As String Dim xFilePath As String Dim xFileDlg As FileDialog Dim xFileDlgItem As Variant Dim xOutApp As Outlook.Application Dim xMailOut As Outlook.MailItem Application.ScreenUpdating = False Set xOutApp = CreateObject("Outlook.Application") Set xMailOut = xOutApp.CreateItem(olMailItem) Set xFileDlg = Application.FileDialog(msoFileDialogFilePicker) If xFileDlg.Show = -1 Then With xMailOut .BodyFormat = olFormatRichText .To = "happy.xuebi@163.com" .Subject = "test" .HTMLBody = "test" For Each xFileDlgItem In xFileDlg.SelectedItems .Attachments.Add xFileDlgItem Next xFileDlgItem .Display End With End If Set xMailOut = Nothing Set xOutApp = Nothing Application.ScreenUpdating = True End Sub
Note: please specify your email recipient, subject, and body by changing the variate in .To = happy.xuebi@163.com, .Subject = "test" and .HTMLBody = "test" lines in the code.
6. Press the Alt + Q keys together to exit the Microsoft Visual Basic for Applications window.
7. Click Developer > Design Mode to turn off the Design Mode. See screenshot:
8. Click the Command Button to run the code. In the popping up Browse window, select the files you need to attach in the email, and then click the OK button. See screenshot:
9. Then an email is created with specified fields and attachments listed out. Please click the Send button to send it. See screenshot:
Note: The VBA code is only working when you use Outlook as your email program.
Easily send email through Outlook based on fields of created mailing list in Excel:
The Send Emails utility of Kutools for Excel helps users sending email through Outlook based on created mailing list in Excel.
Download and try it now! (
30-day free trail)
Related articles:
- How to send email to email addresses specified in cells in Excel?
- How to send email with copying and pasting a specified range into email body in Excel?
- How to insert signature into Outlook email when sending by vba in Excel?
- How to send email if due date has been met in Excel?
- How to automatically send email based on cell value in Excel?
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
