C# Class Ceen.PaaS.Database.SentEmailLog

Log of sent emails
Show file Open project: kenkendk/ceenhttpd

Public Properties

Property Type Description
Delivered bool
From string
RequestIP string
Subject string
To string
Type EmailType
When DateTime

Property Details

Delivered public property

A value indicting if the email has been delivered to the mail server
public bool Delivered
return bool

From public property

The email sender
public string From
return string

RequestIP public property

The IP of the client requesting the email to be sent (for rate limiting)
public string RequestIP
return string

Subject public property

The email subject
public string Subject
return string

To public property

The email recipient
public string To
return string

Type public property

The email type
public EmailType Type
return EmailType

When public property

The time the email was sent
public DateTime When
return DateTime