Hi Jamie
The module below (from your reply) does nothing !! Have inserted as a Macro in the spreadsheet but when I run the Macro (or F5 from Visual Basic) nothing happens.
Mike
Sub MailWorkbook()
Dim OutApp As Object
Dim OutMail As Object
Set OutApp = CreateObject("Outlook.Application")
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.to = "mike@gmail.com"
.CC = ""
.BCC = ""
.Subject = "Our Order"
.Body = ""
.Attachments.Add ActiveWorkbook.FullName
End With
On Error GoTo 0
Set OutMail = Nothing
Set OutApp = Nothing
End Sub
Bookmarks