-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBotmail.cs
More file actions
38 lines (30 loc) · 1.1 KB
/
Botmail.cs
File metadata and controls
38 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Botmail.cs" company="Lord Design">
// © Lord Design. Modified GPL: You may use freely and commercially without modification; you can modify if result
// is also free.
// </copyright>
// <author>aaron@lorddesign.net</author>
// --------------------------------------------------------------------------------------------------------------------
namespace Devlord.Utilities.Mail
{
/// <summary>
/// The botmail.
/// </summary>
public class Botmail
{
#region Public Properties
/// <summary>
/// Gets or sets the addressee.
/// </summary>
public IEnumerable<string> Addressees { get; set; }
/// <summary>
/// Gets or sets the addresser.
/// </summary>
public string Addresser { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
public bool Ssl { get; set; }
public MailFormat Format { get; set; }
#endregion
}
}