Class MailAttachment
Simple Mail Attachment POCO
Inheritance
System.Object
MailAttachment
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Mailing
Assembly: Simplic.Framework.dll
Syntax
public class MailAttachment
Properties
| Improve this Doc View SourceBlobGuid
Gets or sets the current blob guid
Declaration
public Guid? BlobGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Content
Attachment content in bytes
Declaration
public byte[] Content { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
EmbedAttachment
Decides if this attachment should be embed in an email.
Declaration
public bool EmbedAttachment { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Ident
Represents an Attachment Id
Declaration
public long Ident { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
MailIdent
Represents a relation to the Mail Queue Item (Belongs to)
Declaration
public long MailIdent { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Name
Attachment Name (Usually a file name)
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |