2018-12-18 15:42:39 +01:00
|
|
|
|
namespace MailSender
|
2018-12-08 19:27:21 +01:00
|
|
|
|
{
|
|
|
|
|
public class Settings
|
|
|
|
|
{
|
|
|
|
|
public static string smtpServer = "smtp.gmail.com";
|
|
|
|
|
public static int smtpPort = 587;
|
|
|
|
|
public static string user = "ttestowy504@gmail.com";
|
|
|
|
|
public static string pass = "ChyzySoftware";
|
|
|
|
|
}
|
|
|
|
|
}
|