Show / Hide Table of Contents

Class Sender

The envelope and the header from email address details, that is sending the email. Email address must be an approved sender.

Inheritance
object
Sender
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 Sender

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment that contains the approved sender resource.

Remarks

Required

SenderAddress

Declaration
[Required(ErrorMessage = "SenderAddress is required.")]
[JsonProperty(PropertyName = "senderAddress")]
public EmailAddress SenderAddress { get; set; }
Property Value
Type Description
EmailAddress
Remarks

Required

In this article
Back to top