Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have procedure for sending mail. The problem is that the procedure will work the first time it is executed but not the second time then the third time it will work but not the fourth time and so on. The sendEmail procedure is below. Any help will be very much appreciated! Public Sub sendMail() On Error Resume Next Dim oLApp As Object Dim eMail As Object Dim thisWb As String thisWb = ThisWorkbook.Path & "\" & ThisWorkbook.Name Set oLApp = CreateObject("Outlook.Application") Set eMail = oLApp.CreateItem(olMailItem) With eMail .To = " .Subject = "some subject" .Attachments.Add (thisWb) .Display End With Set eMail = Nothing Set oLApp = Nothing End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CreateObject("Excel.Application") | Excel Worksheet Functions | |||
CreateObject("InternetExplorer.Application") | Excel Programming | |||
Set OutApp = CreateObject("Outlook.Application") - Runtime error 429 | Excel Programming | |||
ASP: CreateObject("Excel.Application") IIS 6.0 Win2003 | Excel Programming | |||
CreateObject("Excel.Application") - Access denied | Excel Programming |