Hello rss12321,
Sorry for the late reply. I had to leave unexpectedly to answer a client's request. You probably need to enable macros in Excel. Here is link on how to do that...
Change Macro Security Settings In Excel 2007
Also, this version of the macro will handle most common Excel file formats. You may want to use this version instead of the previous one.
Sub EmailSheets()
Dim Body As String
Dim Ext As String
Dim Filename As Variant
Dim FileType As Long
Dim olApp As Object
Dim Recipients As String
Dim Subject As String
Dim TempFiles As String
Dim Wks As Worksheet
' Change these to what you want to say.
Subject = ""
Body = ""
Set olApp = CreateObject("Outlook.Application")
FileFormat = ThisWorkbook.FileFormat
Select Case FileFormat
Case xlOpenXMLWorkbook: Ext = ".xlsx"
Case xlOpenXMLWorkbookMacroEnabled: Ext = ".xlsm"
Case xlOpenXMLTemplateMacroEnabled: Ext = ".xltm"
Case xlOpenXMLTemplate: Ext = ".xltx"
Case xlOpenXMLAddIn: Ext = ".xlam"
Case xlWorkbookNormal: Ext = ".xls"
Case xlTemplate: Ext = ".xlt"
Case xlAddIn: Ext = ".xla"
Case xlCSV, xlCSVMac, xlCSVMSDOS, xlCSVWindows: Ext = ".csv"
End Select
For Each Wks In ThisWorkbook.Worksheets
Recipients = Recipients & Wks.Range("D2") & ";"
Filename = Environ("TEMP") & "\" & Wks.Mame & Ext
Wks.SaveAs Filename, FileFormat
ActiveWorkbook.Close True
TempFiles = TempFiles & Filename & ";"
Next Wks
' Send all the emails at once.
With olApp.CreateItem(0)
.To = Recipients
.Subject = Subject
.Body = Body
.Attachments.Add TempFiles
End With
' Cleanup the temporary files.
For Each Filename In Split(TempFiles, ";")
If Filename <> "" Then Kill Filename
Next Filename
End Sub
Bookmarks