10 lines
281 B
C#
10 lines
281 B
C#
namespace MailSender
|
|
{
|
|
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";
|
|
}
|
|
} |