SmtpSender added
This commit is contained in:
25
Massmailer.Shared/Model/SmtpSettings.cs
Normal file
25
Massmailer.Shared/Model/SmtpSettings.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user