コード例 #1
0
 public OutlookEmailSendAsync(EmailOutlookProperties properties)
 {
     EmailProperties.GetInstance.ExchangeConnectionTimeout  = properties.ExchangeConnectionTimeOut;
     EmailProperties.GetInstance.ExchangeMailServerAddress  = properties.ExchangeMailServerAddress;
     EmailProperties.GetInstance.ExchangeMailServerPassword = properties.ExchangeMailServerPassword;
     EmailProperties.GetInstance.ExchangeMailServerUsername = properties.ExchangeMailServerUsername;
     EmailProperties.GetInstance.ExchangeUriService         = properties.ExchangeUriService;
 }
コード例 #2
0
ファイル: EmailWrapper.cs プロジェクト: satriansyahw/Mirror
 public EmailWrapper(EmailOutlookProperties properties)
 {
     emailSend = new OutlookEmailSend(properties);
 }