1
我正在研究一個基本項目,我的WinForm將用戶輸入發送到任何gmail。防止殺毒軟件說我的gmail winform有病毒
這裏是我的代碼:
using System;
using System.Net.Mail;
private void button1_Click(object sender, EventArgs e)
{
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient("smtp.customsmtp.com");
mail.From = new MailAddress("[email protected]");
mail.To.Add("[email protected]");
mail.Subject = "New Survey Answer";
mail.Body = "Answer 1:" + textBox1.Text + "Answer2:" + textBox2.text
+ "Answer3": + textBox3.Text;
SmtpServer.Send(mail);
}
的問題是,當你運行.exe
文件這一方案的殺毒認爲這個方案是某種病毒。有什麼辦法可以防止這種情況發生?
與您的系統管理員交談... – 2013-05-14 09:30:36
您可以將程序的.exe作爲可信應用程序添加到防病毒軟件中。 – 2013-05-14 09:32:36