HI all, the following code sends an email out,
ive been searching but can figure out how to see if the email was sent. Thanks for your time.Code:Set objOutlook = CreateObject("Outlook.application") Set objEmail = objOutlook.CreateItem(olMailItem) With objEmail .To = "Behnam Torabi" .CC = "" .Subject = "New Meter has been setup in IEE" .body = "Hello," .display End With Set objOutlook = Nothing