Please help, I have a script that will not work. It just stops with
"The specified module could ot be found" Error 8007007E. Is it
somthing to to with the reg file.
Any help received with thanks.
Dim EM
Dim MailItem
MsgBox "Creating Outlook object"
Set EM = CreateObject("Outlook.Application")
MsgBox "Creating e-mail item"
Set MailItem = EM.CreateItem(0)
MsgBox "Setting Email Parmeters"
MailItem.Subject = "A Test"
MailItem.Body = "This text is in the body"
MailItem.Recipients.Add "me@home.com"
MsgBox "Displaying Email Item"
'MailItem.Send
MailItem.Display(True)