Search Results for

    Show / Hide Table of Contents

    Class BulkSendEmailOptions

    Options for bulk sending an email from multiple addresses. See regular sendEmail methods for more information.

    Inheritance
    object
    BulkSendEmailOptions
    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 = "BulkSendEmailOptions")]
    public class BulkSendEmailOptions : IValidatableObject

    Constructors

    View Source

    BulkSendEmailOptions()

    Initializes a new instance of the BulkSendEmailOptions class.

    Declaration
    [JsonConstructor]
    protected BulkSendEmailOptions()
    View Source

    BulkSendEmailOptions(List<Guid>, SendEmailOptions)

    Initializes a new instance of the BulkSendEmailOptions class.

    Declaration
    public BulkSendEmailOptions(List<Guid> inboxIds = null, SendEmailOptions sendEmailOptions = null)
    Parameters
    Type Name Description
    List<Guid> inboxIds

    Inboxes to send the email from (required).

    SendEmailOptions sendEmailOptions

    sendEmailOptions (required).

    Properties

    View Source

    InboxIds

    Inboxes to send the email from

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

    Inboxes to send the email from

    View Source

    SendEmailOptions

    Gets or Sets SendEmailOptions

    Declaration
    [DataMember(Name = "sendEmailOptions", IsRequired = true, EmitDefaultValue = true)]
    public SendEmailOptions SendEmailOptions { get; set; }
    Property Value
    Type Description
    SendEmailOptions

    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.