Hi,
I'm trying to send an email that has a set range "A1:D10" from workbook "Budget", sheet "Mid Day" as the body of the message. I also want to take all of sheets "Pivot" & "Data" and send them as an attachment in this email as well. I've taken some code from Mail from Excel with Outlook (VBA) but can't get my final product. Everything works in my code except the body of the email is just blank every time. Can anyone help me out? Thanks so much!
I'm trying to send an email that has a set range "A1:D10" from workbook "Budget", sheet "Mid Day" as the body of the message. I also want to take all of sheets "Pivot" & "Data" and send them as an attachment in this email as well. I've taken some code from Mail from Excel with Outlook (VBA) but can't get my final product. Everything works in my code except the body of the email is just blank every time. Can anyone help me out? Thanks so much!
Code:
Sub Mail_ActiveSheet()
'Working in Excel 2000-2013
'For Tips see: http://www.rondebruin.nl/win/winmail/Outlook/tips.htm
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim Sourcewb As Workbook
Dim Destwb As Workbook
Dim TempFilePath As String
Dim TempFileName As String
Dim OutApp As Object
Dim OutMail As Object
Dim newRange As Range
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
newRange = Sheets("Mid Day").Range("A1:D10")
Set Sourcewb = ActiveWorkbook
'Copy the ActiveSheet to a new workbook
Sheets(Array("Data", "Pivot")).Copy
Set Destwb = ActiveWorkbook
'Determine the Excel version and file extension/format
With Destwb
If Val(Application.Version) < 12 Then
'You use Excel 97-2003
FileExtStr = ".xls": FileFormatNum = -4143
Else
'You use Excel 2007-2013
FileExtStr = ".xlsx": FileFormatNum = 51
End If
End With
' 'Change all cells in the worksheet to values if you want
' With Destwb.Sheets(1).UsedRange
' .Cells.Copy
' .Cells.PasteSpecial xlPasteValues
' .Cells(1).Select
' End With
' Application.CutCopyMode = False
'Save the new workbook/Mail it/Delete it
TempFilePath = Environ$("temp") & "\"
TempFileName = "Part of " & Sourcewb.Name & " " & Format(Now, "dd-mmm-yy h-mm-ss")
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
With Destwb
.SaveAs TempFilePath & TempFileName & FileExtStr, FileFormat:=FileFormatNum
On Error Resume Next
On Error GoTo 0
.Close savechanges:=False
End With
With OutMail
.to = "email@email.com"
.CC = ""
.BCC = ""
.Subject = "Daily Budget"
.Body = newRange
.Attachments.Add Destwb.FullName
'You can add other files also like this
'.Attachments.Add ("C:\test.txt")
.Send 'or use .Display
End With
'Delete the file you have send
Kill TempFilePath & TempFileName & FileExtStr
Set OutMail = Nothing
Set OutApp = Nothing
With Application
.ScreenUpdating = True
.EnableEvents = True
End With
End Sub