Ejemplo n.º 1
0
 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"
     };
 }
Ejemplo n.º 2
0
 public SmtpService(SmtpSettings config)
 {
     _config = config;
 }