Example #1
0
 private void SetSmtpProperties(Dom.ClientSettings clientSetting)
 {
     this.credentials = new System.Net.NetworkCredential(clientSetting.SmtpAccount.username, clientSetting.SmtpAccount.password);
     this.enableSsl   = clientSetting.SmtpAccount.sslEnabled;
     this.serverUrl   = clientSetting.SmtpAccount.serverUrl;
     this.fromEmail   = clientSetting.SmtpAccount.email;
 }
Example #2
0
 public ClientSettingsDto(Dom.ClientSettings clientSettings)
 {
     smtpAccount          = clientSettings.SmtpAccount;
     smtpAccount.password = null;
 }