Advertisement
Guest User

Untitled

a guest
Sep 21st, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. private static EmailConfig LoadData()
  2. {
  3. // TODO to jest tymczasowa metoda
  4. var config = new EmailConfig();
  5.  
  6. config.SendEmails = true;
  7. config.Host = "smtp.comarch.com";
  8. config.SenderName = "pawel.fatyga@stazysta.comarch.pl";
  9. config.SenderAddress = "pawel.fatyga@stazysta.comarch.pl";
  10. config.User = "pawel.fatyga@stazysta.comarch.pl";
  11. string pass = "#@#@#@#@@#@#@";
  12. config.Password = pass.ToSecureString();
  13. config.LanguageCode = "pl-PL";
  14. config.Port = 25;
  15. config.SendingOptions = 0;
  16. config.UseSSL = false;
  17. config.Recipients.Add("pawel.fatyga@stazysta.comarch.pl");
  18.  
  19. return config;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement