|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Cannot send email due to antivirusHi all I am trying to send an email through my application (VB.NET 2005). The email goes as required. However if I turn 'Internet Auto Protect' feature ON in Norton Antivirus, the email goes only when I exit from my VB application. Please assist. Mike TI Source Code ********** Dim Mail As New MailMessage() Mail.From = New MailAddress(***@xxx.com) Mail.To.Add("***@yyy.com") Mail.Subject = "Subject Test Email" Mail.Body = "This is the body of the test email" Dim Smtp As New SmtpClient("000.000.000.000") Smtp.Send(Mail) *********** Well, if you want the email to go then turn the feature off.
Show quoteHide quote "Mike TI" <sunset***@hotmail.com> wrote in message news:eo$XUqtXGHA.3840@TK2MSFTNGP02.phx.gbl... > April 13, 2006 > > Hi all > > I am trying to send an email through my application (VB.NET 2005). The > email goes as required. However if I turn 'Internet Auto Protect' feature > ON in Norton Antivirus, the email goes only when I exit from my VB > application. > > Please assist. > Mike TI > > Source Code > > ********** > Dim Mail As New MailMessage() > > Mail.From = New MailAddress(***@xxx.com) > > Mail.To.Add("***@yyy.com") > > Mail.Subject = "Subject Test Email" > > Mail.Body = "This is the body of the test email" > > Dim Smtp As New SmtpClient("000.000.000.000") > > Smtp.Send(Mail) > > *********** > Your AV software is probably blocking port 25 which is SMTP (mail xfer
protocol.) Reconfigure your AV to not block this port and your problem will likely go away. Show quoteHide quote "Mike TI" <sunset***@hotmail.com> wrote in message news:eo$XUqtXGHA.3840@TK2MSFTNGP02.phx.gbl... > April 13, 2006 > > Hi all > > I am trying to send an email through my application (VB.NET 2005). The email > goes as required. However if I turn 'Internet Auto Protect' feature ON in > Norton Antivirus, the email goes only when I exit from my VB application. > > Please assist. > Mike TI > > Source Code > > ********** > Dim Mail As New MailMessage() > > Mail.From = New MailAddress(***@xxx.com) > > Mail.To.Add("***@yyy.com") > > Mail.Subject = "Subject Test Email" > > Mail.Body = "This is the body of the test email" > > Dim Smtp As New SmtpClient("000.000.000.000") > > Smtp.Send(Mail) > > *********** >
Why does Replace return Nothing???
VC6 ATL DLL interop with VB.NET Send email Should I use XML as a database for a standalone app? Mail attachment from memory best use of vb.net and multithreading Determine if a File exists Title Bar is visible "Cross-thread operation not valid" without threading!! ComboBox in Bound DataGrid (VB 2003) |
|||||||||||||||||||||||