mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using Milimoe.FunGame.Core.Interface.Base;
|
|
|
|
namespace Milimoe.FunGame.Core.Library.Server
|
|
{
|
|
public class SmtpClientInfo : IMailSender
|
|
{
|
|
public string Host => _Host;
|
|
public int Port => _Port;
|
|
public bool OpenSSL => _OpenSSL;
|
|
public string SenderMailAddress => _SenderMailAddress;
|
|
public string SenderName => _SenderName;
|
|
public string SenderPassword => _SenderPassword;
|
|
|
|
private string _Host = "";
|
|
private int _Port = 587;
|
|
private bool _OpenSSL = true;
|
|
private string _SenderMailAddress = "";
|
|
private string _SenderName = "";
|
|
private string _SenderPassword = "";
|
|
|
|
internal SmtpClientInfo(string SenderMailAddress, string SenderName, string SenderPassword, string Host, int Port, bool OpenSSL)
|
|
{
|
|
_Host = Host;
|
|
_Port = Port;
|
|
_OpenSSL = OpenSSL;
|
|
_SenderMailAddress = SenderMailAddress;
|
|
_SenderName = SenderName;
|
|
_SenderPassword = SenderPassword;
|
|
}
|
|
}
|
|
}
|