Class SendSMTPEnvelopeOptions
Options for the email envelope
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "SendSMTPEnvelopeOptions")]
public class SendSMTPEnvelopeOptions : IValidatableObject
Constructors
View SourceSendSMTPEnvelopeOptions()
Initializes a new instance of the SendSMTPEnvelopeOptions class.
Declaration
[JsonConstructor]
protected SendSMTPEnvelopeOptions()
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 SourceData
Gets or Sets Data
Declaration
[DataMember(Name = "data", IsRequired = true, EmitDefaultValue = true)]
public string Data { get; set; }
Property Value
Type | Description |
---|---|
string |
MailFrom
Gets or Sets MailFrom
Declaration
[DataMember(Name = "mailFrom", IsRequired = true, EmitDefaultValue = true)]
public string MailFrom { get; set; }
Property Value
Type | Description |
---|---|
string |
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 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 |