32 lines
668 B
C#
32 lines
668 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Net.Mail
|
|
{
|
|
public static class MailHeaders
|
|
{
|
|
public const string Bcc = "bcc";
|
|
|
|
public const string Cc = "cc";
|
|
|
|
public const string Date = "date";
|
|
|
|
public const string From = "from";
|
|
|
|
public const string Importance = "importance";
|
|
|
|
public const string InReplyTo = "in-reply-to";
|
|
|
|
public const string MessageId = "message-id";
|
|
|
|
public const string Received = "received";
|
|
|
|
public const string ReplyTo = "reply-to";
|
|
|
|
public const string Subject = "subject";
|
|
|
|
public const string To = "to";
|
|
}
|
|
}
|