5 geänderte Dateien mit 93 neuen und 13 gelöschten Zeilen
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Text; |
||||
using System.Threading.Tasks; |
||||
using System.Net.Mail; |
||||
|
||||
namespace Teknik |
||||
{ |
||||
public class SMTPConfig |
||||
{ |
||||
public string Host { get; set; } |
||||
public int Port { get; set; } |
||||
public string Username { get; set; } |
||||
public string Password { get; set; } |
||||
public bool SSL { get; set; } |
||||
|
||||
public SMTPConfig() |
||||
{ |
||||
SetDefaults(); |
||||
} |
||||
|
||||
public void SetDefaults() |
||||
{ |
||||
Host = string.Empty; |
||||
Port = 25; |
||||
Username = string.Empty; |
||||
Password = string.Empty; |
||||
SSL = false; |
||||
} |
||||
} |
||||
} |
Laden…
In neuem Issue referenzieren