Click to See Complete Forum and Search --> : How to create a Outlook.Application object by VBScript within message content (HTML format)


Do Quyet Tien
April 9th, 2001, 02:00 AM
Thanks

Do Quyet Tien

Limor Janah
April 12th, 2001, 02:57 AM
Sub cmdAcount_Click()

Dim MyItem ,myApp
Set myApp =CreateObject("Outlook.Application")
Set MyItem = myApp.CreateItem(0)

MyItem.To = "Me"

Set MyItem = Nothing
Set myApp = Nothing
end sub

Do Quyet Tien
April 12th, 2001, 06:12 AM
Thanks for your reply

But my problem not in coding, I think it is security restricted problem. More clearly, How can I enable script executing in HTML mail message with access permission to objects ?

Do Quyet Tien