-
Topic
-
Hi,
i want to create a email without UI in a proxy account. i used the sample from programmers guide.
Sub Main(Client, GWEvent)
Dim objDraft
Dim objEmail
Dim objRecipient
' Create a draft email message
Set objDraft = GroupWise.Account.MailBox.Messages.Add(4)
' Add a single recipient - ourself
objRecipient = objDraft.Recipients.Add(objDraft.Sender.EmailAddress,,0)
' Add some properties
objDraft.Subject = "This was created using Formativ"
objDraft.BodyText.PlainText = "This is the body text of the email message"
' Send the email by calling the send method
Set objEmail = objDraft.Send
End Sub
Yes it created a email, but not in the proxied account!
How can i realize it?
Thanks …
Ralf
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.