Home All Groups Group Topic Archive Search About

Cannot send email due to antivirus

Author
13 Apr 2006 9:13 AM
Mike TI
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)

***********

Author
13 Apr 2006 1:00 PM
Stephany Young
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)
>
> ***********
>
Author
13 Apr 2006 2:51 PM
Mike Lowery
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)
>
> ***********
>