Search Results for

    Show / Hide Table of Contents

    Class CreateEmailAuditOptions

    Authenticated saved email audit request

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

    Constructors

    View Source

    CreateEmailAuditOptions(string, string, string, string, string, EmailAnalysis, bool?)

    Initializes a new instance of the CreateEmailAuditOptions class.

    Declaration
    public CreateEmailAuditOptions(string fromAddress = null, string recipient = null, string subject = null, string htmlBody = null, string textBody = null, EmailAnalysis emailAnalysis = null, bool? hasAttachments = null)
    Parameters
    Type Name Description
    string fromAddress

    Optional sender address context.

    string recipient

    Optional recipient context.

    string subject

    Optional subject line context.

    string htmlBody

    Optional HTML email body.

    string textBody

    Optional text email body.

    EmailAnalysis emailAnalysis

    emailAnalysis.

    bool? hasAttachments

    Whether the source email included attachments.

    Properties

    View Source

    EmailAnalysis

    Gets or Sets EmailAnalysis

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

    FromAddress

    Optional sender address context

    Declaration
    [DataMember(Name = "fromAddress", EmitDefaultValue = true)]
    public string FromAddress { get; set; }
    Property Value
    Type Description
    string

    Optional sender address context

    View Source

    HasAttachments

    Whether the source email included attachments

    Declaration
    [DataMember(Name = "hasAttachments", EmitDefaultValue = true)]
    public bool? HasAttachments { get; set; }
    Property Value
    Type Description
    bool?

    Whether the source email included attachments

    View Source

    HtmlBody

    Optional HTML email body

    Declaration
    [DataMember(Name = "htmlBody", EmitDefaultValue = true)]
    public string HtmlBody { get; set; }
    Property Value
    Type Description
    string

    Optional HTML email body

    View Source

    Recipient

    Optional recipient context

    Declaration
    [DataMember(Name = "recipient", EmitDefaultValue = true)]
    public string Recipient { get; set; }
    Property Value
    Type Description
    string

    Optional recipient context

    View Source

    Subject

    Optional subject line context

    Declaration
    [DataMember(Name = "subject", EmitDefaultValue = true)]
    public string Subject { get; set; }
    Property Value
    Type Description
    string

    Optional subject line context

    View Source

    TextBody

    Optional text email body

    Declaration
    [DataMember(Name = "textBody", EmitDefaultValue = true)]
    public string TextBody { get; set; }
    Property Value
    Type Description
    string

    Optional text email body

    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.