public MainViewModel() { SendCommand = new DelegateCommand(Send); _smtpSettings = new SmtpSettings { From = "", Host = "", EnableSsl = false, Port = 25, User = "", Password = "" }; _email = new EmailModel { To = "", Subject = "Test subject", Body = "Test body" }; }
public SmtpService(SmtpSettings config) { _config = config; }