Show / Hide Table of Contents

Class Recipients

The destination for the email, composed of To, CC, and BCC fields. NOTE: At least one of To, CC, and BCC must be provided. And max 50 recipients are allowed across the To:, CC: and BCC: fields.

Inheritance
object
Recipients
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.EmaildataplaneService.Models
Assembly: OCI.DotNetSDK.Emaildataplane.dll
Syntax
public class Recipients

Properties

Bcc

Declaration
[JsonProperty(PropertyName = "bcc")]
public List<EmailAddress> Bcc { get; set; }
Property Value
Type Description
List<EmailAddress>

Array of BCC address. Bcc headers can only be viewed by non bcc recipients.

Cc

Declaration
[JsonProperty(PropertyName = "cc")]
public List<EmailAddress> Cc { get; set; }
Property Value
Type Description
List<EmailAddress>

Array of CC address.

To

Declaration
[JsonProperty(PropertyName = "to")]
public List<EmailAddress> To { get; set; }
Property Value
Type Description
List<EmailAddress>

Array of To address.

In this article
Back to top