Exemplo n.º 1
0
        public void SendGOCErrorMail(String strTo, string strFrom, string strSubject, string strBody, bool IsBodyHTML)
        {
            ISBL.General oISBLGen        = new ISBL.General();
            Thread       threadSendMails = new Thread(delegate() { oISBLGen.sendemail(strTo, strFrom, strSubject, strBody, IsBodyHTML); });

            threadSendMails.IsBackground = true;
            threadSendMails.Start();
            //oISBLGen = null;
        }