Show / Hide Table of Contents

Class EmailAddress

Email address Object that holds display name and email address.

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

Properties

Email

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

ASCII only email address.

Remarks

Required

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Display name for the email address. UTF-8 is supported for display name RFC 2047.

In this article
Back to top