• Documentation
  • API Reference
  • REST API & UIs
Show / Hide Table of Contents
  • MailHole.Api
    • Program
    • Startup
    • StartupExtensions
  • MailHole.Api.Auth
    • AuthorizeAdminsAttribute
    • AuthorizeManagersAttribute
    • AuthorizeUsersAttribute
    • AuthSeeder
    • MailHoleRoles
    • PolicyNames
  • MailHole.Api.Controllers
    • AccountsController
    • AttachementsController
    • MailsController
    • ReceiversController
  • MailHole.Api.Hangfire
    • HangfireAuthFilter
  • MailHole.Api.Models
    • CountResult
  • MailHole.Api.Models.Auth
    • AuthRequest
  • MailHole.Api.Models.Validation
    • ValidationRequest
  • MailHole.Api.UnitTests
    • UnitTest1
  • MailHole.Common
    • CleanupJob
    • MailHoleConstants
  • MailHole.Common.Auth
    • CertUtil
  • MailHole.Common.Extensions
    • ConfigExtensions
  • MailHole.Common.HangfireExtensions
    • HangfireActivator
  • MailHole.Common.Model
    • AttachementInfo
    • ReceivedMail
    • Receiver
  • MailHole.Common.Model.Auth
    • EcParamsDto
    • EcParamsDtoExtensions
  • MailHole.Common.Model.Options
    • AuthOptions
    • HangfireOptions
    • MinioOptions
    • RedisOptions
    • SmtpOptions
  • MailHole.Common.Tests.Auth
    • CertUtilTest
  • MailHole.Db
    • MailHoleDbContext
    • MailHoleDbContextFactory
  • MailHole.Db.Entities
    • Attachement
    • Mail
  • MailHole.Db.Entities.Auth
    • MailHoleRole
    • MailHoleUser
  • MailHole.Db.Migrations
    • Initial
  • MailHole.SmtpListener
    • Program
  • MailHole.SmtpListener.Extensions
    • ModelExtensions
  • MailHole.SmtpListener.IntegrationTests
    • RedisMinioStorageJobTest
  • MailHole.SmtpListener.Jobs
    • RedisMinioStoreJob
  • MailHole.SmtpListener.Persistence
    • RedisMinioMailStore
  • MailHole.SmtpListener.UnitTests
    • UnitTest1

Class Mail

Inheritance
System.Object
Mail
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: MailHole.Db.Entities
Assembly: MailHole.Db.dll
Syntax
public class Mail

Properties

| Improve this Doc View Source

Attachements

Declaration
public List<Attachement> Attachements { get; set; }
Property Value
Type Description
System.Collections.Generic.List<Attachement>
| Improve this Doc View Source

Bcc

Declaration
[NotMapped]
public IReadOnlyList<string> Bcc { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<System.String>
| Improve this Doc View Source

BccJson

Declaration
public string BccJson { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Cc

Declaration
[NotMapped]
public IReadOnlyList<string> Cc { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<System.String>
| Improve this Doc View Source

CcJson

Declaration
public string CcJson { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Headers

Declaration
[NotMapped]
public IReadOnlyDictionary<string, string> Headers { get; set; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyDictionary<System.String, System.String>
| Improve this Doc View Source

HeadersJson

Declaration
public string HeadersJson { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

HtmlBody

Declaration
public string HtmlBody { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

MailGuid

Declaration
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Guid MailGuid { get; set; }
Property Value
Type Description
System.Guid
| Improve this Doc View Source

Owner

Declaration
public MailHoleUser Owner { get; set; }
Property Value
Type Description
MailHoleUser
| Improve this Doc View Source

Sender

Declaration
public string Sender { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Subject

Declaration
public string Subject { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

TextBody

Declaration
public string TextBody { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

UtcReceivedTime

Declaration
public DateTime UtcReceivedTime { get; set; }
Property Value
Type Description
System.DateTime
  • Improve this Doc
  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX