I have an Excel macro that I use to upload data to a mainframe. I'd like to add a final step that notifies the computer room that the data has been uploaded.
This code works in Access:
Is there similar code that will work with Excel?
I looked at the .SendMail method, but it appears that is meant to send the workbook itself.
Randy
This code works in Access:
Code:
DoCmd.SendObject acSendNoObject, , , "me@domain.com", , , "Information Needed", "Testing email", False
I looked at the .SendMail method, but it appears that is meant to send the workbook itself.
Randy