This commit is contained in:
chi
2023-02-02 20:47:21 +09:00
parent f8842333a0
commit f5b0e77af3
19 changed files with 1047 additions and 288 deletions

View File

@@ -110,7 +110,6 @@ namespace JobReportMailService
"<br />메일이 잘못 전송 되었다면 [<a href='chikyun.kim@amkor.co.kr'>chikyun.kim@amkor.co.kr</a>] 로 문의 주시기 바랍니다" +
"</p>";
//전송을 해야 함
var mc = new System.Net.Mail.SmtpClient("10.101.10.6");
var msg = new System.Net.Mail.MailMessage
@@ -119,7 +118,6 @@ namespace JobReportMailService
dr.subject,
body);
if (list_bcc != "") msg.Bcc.Add(list_bcc);
if (list_cc != "") msg.CC.Add(list_cc);
msg.IsBodyHtml = true;