From ca80e29862e2fba705882e4a4922d22f4683d8bb Mon Sep 17 00:00:00 2001 From: alina <1449359159@qq.com> Date: Thu, 23 Feb 2023 08:22:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=8B=E8=A8=82=E5=96=AE?= =?UTF-8?q?=E6=99=82=E7=B5=A6=E8=81=AF=E7=B5=A1=E4=BA=BA=E7=99=BCMail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EasyBL.WEBAPP/ShowEasy/OnsiteService.cs | 64 +++++++++++++++---- 1 file changed, 51 insertions(+), 13 deletions(-) diff --git a/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs b/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs index d42287d..f6c6252 100644 --- a/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs +++ b/EuroTran/EasyBL.WEBAPP/ShowEasy/OnsiteService.cs @@ -1117,19 +1117,57 @@ namespace EasyBL.WEBAPP.ShowEasy { //取得聯絡人的Email - //var objONSiteBaseInfo = db.Queryable() - // //搜尋條件 - // .Where(x => x.OrgID == sORIGID && x.ServiceID == Booking.ServiceID && x.LangID == rsBooking.LangType) - // .Single(); - - //if (objONSiteBaseInfo.Undertaker != "[]" && objONSiteBaseInfo.Undertaker != "") - //{ - // var saContactor = db.Queryable - // () - // .Where((t1) => t1.LangType == rsBooking.LangType && objONSiteBaseInfo.Undertaker.Contains(t1.Guid)) - // .ToList(); - - //} + var objONSiteBaseInfo = db.Queryable() + //搜尋條件 + .Where(x => x.OrgID == sORIGID && x.ServiceID == Booking.ServiceID && x.LangID == rsBooking.LangType) + .Single(); + + if (objONSiteBaseInfo.Undertaker != "[]" && objONSiteBaseInfo.Undertaker != "") + { + var saContactor = db.Queryable + () + .Where((t1) => t1.LangType == rsBooking.LangType && objONSiteBaseInfo.Undertaker.Contains(t1.Guid)) + .ToList(); + if (saContactor.Count > 0) { + + try + { + //開始寄信 + var oEmail = new Emails(); //寄件人 + var toEmail = new List(); //收件人 + + foreach (var Contactor in saContactor) + { + + var oEmailTo = new EmailTo //收件人資訊 + { + + ToUserName = Contactor.ContacterName, + ToEmail = Contactor.Email, + Type = "to" + }; + toEmail.Add(oEmailTo); + } + oEmail.Title = "訂單確認"; //取fonfig + oEmail.EmailBody = "請與系統中確認訂單,訂單編號:" + rsBooking.BookingNo; + oEmail.IsCCSelf = false; + oEmail.Attachments = null; + oEmail.EmailTo = toEmail; + var bSend = new MailService(sORIGID, true).MailFactory(oEmail, out sError); + } + catch (Exception) + { + + throw; + } + + } + + + + } + + }