Vcl.ExtActns.TRecipientType
Delphi
TRecipientType = (
rtPrimary, // primary message recipient
rtCC, // recipient of a message copy
rtBCC); // recipient of a blind copy
C++
enum DECLSPEC_DENUM TRecipientType : unsigned char { rtPrimary, rtCC, rtBCC };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | Vcl.ExtActns.pas Vcl.ExtActns.hpp |
Vcl.ExtActns | Vcl.ExtActns |
Description
Enumerates an e-mail message's types of recipients.
TRecipientType is an enumeration type that can be used to specify the way a recipient of an e-mail receives the message. TRecipientType can have one of the following values:
| Value | Meaning |
|---|---|
|
rtPrimary |
The recipient is primary (To). |
|
rtCC |
The recipient receives a carbon copy (CC). |
|
rtBCC |
The recipient receives a blind carbon copy (BCC). |