Search Results for

    Show / Hide Table of Contents

    Class SendSMTPEnvelopeOptions

    Options for the email envelope

    Inheritance
    object
    SendSMTPEnvelopeOptions
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "SendSMTPEnvelopeOptions")]
    public class SendSMTPEnvelopeOptions : IValidatableObject

    Constructors

    View Source

    SendSMTPEnvelopeOptions()

    Initializes a new instance of the SendSMTPEnvelopeOptions class.

    Declaration
    [JsonConstructor]
    protected SendSMTPEnvelopeOptions()
    View Source

    SendSMTPEnvelopeOptions(List<string>, string, string)

    Initializes a new instance of the SendSMTPEnvelopeOptions class.

    Declaration
    public SendSMTPEnvelopeOptions(List<string> rcptTo = null, string mailFrom = null, string data = null)
    Parameters
    Type Name Description
    List<string> rcptTo

    rcptTo (required).

    string mailFrom

    mailFrom (required).

    string data

    data (required).

    Properties

    View Source

    Data

    Gets or Sets Data

    Declaration
    [DataMember(Name = "data", IsRequired = true, EmitDefaultValue = true)]
    public string Data { get; set; }
    Property Value
    Type Description
    string
    View Source

    MailFrom

    Gets or Sets MailFrom

    Declaration
    [DataMember(Name = "mailFrom", IsRequired = true, EmitDefaultValue = true)]
    public string MailFrom { get; set; }
    Property Value
    Type Description
    string
    View Source

    RcptTo

    Gets or Sets RcptTo

    Declaration
    [DataMember(Name = "rcptTo", IsRequired = true, EmitDefaultValue = true)]
    public List<string> RcptTo { get; set; }
    Property Value
    Type Description
    List<string>

    Methods

    View Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.