Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: string SendersAddress = "jd@gmail.com"; string ReceiversAddress = "dj@xxx.com"; const string SendersPassword = "xxxxxx"; const string subject = "Testing Gmail LOCAL"; const string body = "Hi This Is my Mail From Gmail"; try { SmtpClient smtp = new SmtpClient { Host = "smtp.gmail.com", Port = 587, EnableSsl = true, DeliveryMethod = […]
↧