Hi,
Email works fine until I add 'objmail.From' to my script. Then I get:
Object doesn't support this property or method: 'objectmail.from'
This is content of vbs file:
set objoutlook=CreateObject("Outlook.Application")
set objmail=objoutlook.CreateItem(0)
objmail.To = "reciptent"
objmail.From = "sender"
objmail.Subject = "subject"
objmail.Body =
objmail.Send
set objmail=nothing
set objoutlook=nothing
Thanks in advance,
Joe
Email works fine until I add 'objmail.From' to my script. Then I get:
Object doesn't support this property or method: 'objectmail.from'
This is content of vbs file:
set objoutlook=CreateObject("Outlook.Application")
set objmail=objoutlook.CreateItem(0)
objmail.To = "reciptent"
objmail.From = "sender"
objmail.Subject = "subject"
objmail.Body =
objmail.Send
set objmail=nothing
set objoutlook=nothing
Thanks in advance,
Joe