View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default emailing workbooks

Hi
you may have a look at
http://www.rondebruin.nl/sendmail.htm
for more information regarding mailing from Excel

Frank


WIlliam Barnes wrote:
Using Excel 2000 under Win 2K:

I'd like to write code that will send a workbook as an attachment by
email. I haven't been able to find much in the help files. I tried
the following but got a 1004 Run-Time Error 'Application-Defined or
Object-Defined Error'

"MyUserName" is the UserID required to log in to my Email server,
"MyPassword" is the password for the same.

Public Sub MailWkbk()
If IsNull(Application.MailSession) Then
Application.MailLogon "MyUserName", "MyPassword", False
End If

ThisWorkbook.SendMail "MyEmailAddress", "Test Send"

Application.MailLogoff

End Sub

Can anyone suggest some code to accomplish this?