SmtpSender added

This commit is contained in:
2021-02-04 21:26:26 +01:00
parent a42bfb8c6d
commit 745b6d22a9
6 changed files with 88 additions and 10 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Massmailer.Shared.Model
{
public class SmtpSettings
{
public string Server { get; set; }
public int Port { get; set; }
public string SenderName { get; set; }
public string SenderEmail { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public bool UseSsl { get; set; }
}
}