IEmailAttachment

Namespace: Proffer.Email

An email attachment file.

public interface IEmailAttachment

Properties

FileName

Gets or sets the file name.

public abstract string FileName { get; set; }

Property Value

String

Data

Gets or sets the file content.

public abstract Byte[] Data { get; set; }

Property Value

Byte[]

MediaType

Gets or sets the media type.

public abstract string MediaType { get; set; }

Property Value

String

MediaSubtype

Gets or sets the media subtype.

public abstract string MediaSubtype { get; set; }

Property Value

String

ContentType

Gets the content-type.

public abstract string ContentType { get; }

Property Value

String