I could do these before I went to the pub and it seemed like a good place
to start :)
/J\
--
Jonathan Stowe |
<http://www.gellyfish.com> | This space for rent
|
//
// System.Web.Mail.MailEncoding
//
// Author
// Jonathan Stowe <[EMAIL PROTECTED]>
//
namespace System.Web.Mail
{
public enum MailEncoding
{
Base64,
UUEncode
}
}
//
// System.Web.Mail.MailFormat
//
// Author:
// Jonathan Stowe <[EMAIL PROTECTED]>
//
namespace System.Web.Mail
{
public enum MailFormat
{
Html,
Text
}
}
//
// System.Web.Mail.MailPriority
//
// Author:
// Jonathan Stowe <[EMAIL PROTECTED]>
namespace System.Web.Mail
{
public enum MailPriority
{
High,
Low,
Normal
}
}