PureBasic
PureBasic
Get a Cc Recipient's Name Only
See more Email Object Examples
Demonstrates the Chilkat Email.GetCcName method, which returns only the friendly-name part (not the address) of the Nth carbon-copy recipient. The index is zero-based. This example adds two Cc recipients and prints each one's display name.
Background: A recipient combines a display name with an address, such as
Jane Doe <jane@example.com>. GetCcName returns just the Jane Doe portion, which is handy for showing a friendly label in a UI. The name is optional free-form text, so it may be empty — when it is, fall back to the address from GetCcAddr.Chilkat PureBasic Downloads
IncludeFile "CkEmail.pb"
Procedure ChilkatExample()
; Demonstrates the GetCcName method, which returns only the friendly-name part (not the
; address) of the Nth carbon-copy recipient. The index is zero-based.
email.i = CkEmail::ckCreate()
If email.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkEmail::setCkSubject(email, "GetCcName example")
CkEmail::ckAddCC(email,"Joe Smith","joe@example.com")
CkEmail::ckAddCC(email,"Jane Doe","jane@example.com")
n.i = CkEmail::ckNumCC(email)
i.i
For i = 0 To n - 1
Debug "Cc " + Str(i) + " name: " + CkEmail::ckGetCcName(email,i)
Next
CkEmail::ckDispose(email)
ProcedureReturn
EndProcedure