- Initials of a contact
- Email recipient
- Email recipient
- Email recipient
The following example is used to retrieve the initials of the 1st contact.
// Retrieve the initials of the 1st contact ContactFirst(SessionID) Info("The initials of" + mContact.FirstName + " " + mContact.LastName + "are:" + ... NotesItem(SessionID, "Initials"))
The following example is used to retrieve the 1st recipient of the 1st email.
// Retrieve the 1st recipient of the 1st email EmailReadFirst(SessionID) Recipient is string Recipient = NotesItem(SessionID, "INetSendTo", 1)
The following example is used to retrieve the recipients of the 1st email.
// Retrieve the recipients of the 1st email EmailReadFirst(SessionID) // Add these recipients into a List Box control ListAdd(LIST_RecipientList, NotesItem(SessionID, "INetSendTo"))
The following example is used to retrieve the recipients of the 1st email.
// Retrieve the recipients of the 1st email EmailReadFirst(SessionID) arrRecipient is array of 0 string ARecipient is string NotesItem(SessionID, "INetSendTo", arrRecipient) // Add these recipients into a List Box control FOR EACH ELEMENT ARecipient OF arrRecipient ListAdd(LIST_RecipientList, ARecipient) END
This page is also available for…
|
|
|
|