H
HK
hi all,
i have setup a custome form to work between 2 exchange servers. all users
lunch the custome form from server1 and send it to a public folder and this
public folder sends the second server a notification (email) saying there is
a form sitting in the public folder in server1 go and see it. so i have to
login to the first server and go to that public folder and see the form.
is there any way when user hits the submit button the custome form gets
transafered to the second server instead of going to a public folder?
I am using the following:
'Create and send message to server2 to let them know that there is a new
help request.
Set MyNameSpace = Application.GetNameSpace("MAPI")
Set BuildFolder = MyNameSpace.Folders("Public Folders")
Set AllPublicFolders = BuildFolder.Folders("All Public Folders")
Set HelpDeskDatabase = AllPublicFolders.Folders("Requests")
Set EmailNotification =
HelpDeskDatabase.Items.Add("IPM.Note.EmailNotification")
EmailNotification.To = "(e-mail address removed)"
EmailNotification.Subject = "New Help Request at Server 1"
EmailNotification.Send
thanks for your help
i have setup a custome form to work between 2 exchange servers. all users
lunch the custome form from server1 and send it to a public folder and this
public folder sends the second server a notification (email) saying there is
a form sitting in the public folder in server1 go and see it. so i have to
login to the first server and go to that public folder and see the form.
is there any way when user hits the submit button the custome form gets
transafered to the second server instead of going to a public folder?
I am using the following:
'Create and send message to server2 to let them know that there is a new
help request.
Set MyNameSpace = Application.GetNameSpace("MAPI")
Set BuildFolder = MyNameSpace.Folders("Public Folders")
Set AllPublicFolders = BuildFolder.Folders("All Public Folders")
Set HelpDeskDatabase = AllPublicFolders.Folders("Requests")
Set EmailNotification =
HelpDeskDatabase.Items.Add("IPM.Note.EmailNotification")
EmailNotification.To = "(e-mail address removed)"
EmailNotification.Subject = "New Help Request at Server 1"
EmailNotification.Send
thanks for your help