Session


CreateMailNotification

Create Mail notification object on server

Call Method
[VB.NET]
   Function CreateMailNotification (SessionID As String) As String
Parameters
   SessionID
         Session ID
Return value
         Mail notification object ID
VB.NET Example Switch to language: [C#]
  'Create personalizer object and Session object
  Dim pers As New PersonalizerRef.Personalizer()
  Dim sess As New SessionRef.Session()
  Dim SessionID As String = ""
  Try
      SessionID = pers.CreateSession("LogonName", "Password")
      ' Create Mail notification Mail proxy object
      Dim objMail As New MailRef.Mail()
      'Create server notification object
      MailNotifID = sess.CreateMailNotification(SessionID)
      ...