Class BulkSendEmailOptions
Options for bulk sending an email from multiple addresses. See regular sendEmail methods for more information.
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "BulkSendEmailOptions")]
public class BulkSendEmailOptions : IValidatableObject
Constructors
View SourceBulkSendEmailOptions()
Initializes a new instance of the BulkSendEmailOptions class.
Declaration
[JsonConstructor]
protected BulkSendEmailOptions()
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 SourceInboxIds
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 |
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 SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |