public EmailWrapperAsync(EmailOutlookProperties properties)
 {
     emailSend = new OutlookEmailSendAsync(properties);
 }
 public EmailWrapperAsync()
 {
     //default, using default conf
     emailSend = new SMTPEmailSendAsync();
 }
 public EmailWrapperAsync(EmailSMTPProperties properties)
 {
     emailSend = new SMTPEmailSendAsync(properties);
 }