Groups | Blog | Home
all groups > vb.net > february 2004 >

vb.net : SMTP Mail Mystery


Joe Fallon
2/2/2004 11:41:01 PM
You have a problem with your system clock.
--
Joe Fallon



[quoted text, click to view]

hirf-spam-me-here NO[at]SPAM gmx.at
2/3/2004 1:11:53 PM
Gene,

* "Gene Ariani" <karadur@comcast.net> scripsit:
[quoted text, click to view]

1. Your system date is wrong.
2. Use Google Groups Search (<http://www.deja.com>) to find more
information on possible reasons.

--
Herfried K. Wagner [MVP]
Chad Z. Hower aka Kudzu
2/3/2004 6:06:54 PM
"Gene Ariani" <karadur@comcast.net> wrote in
news:6umdnUHcu8N8jYLdRVn-gg@comcast.com:
[quoted text, click to view]

Do you have CDO installed?

Also have you considered Indy? It doesnt require CDO and has more advanced
support for mail. Its also free.

http://www.indyproject.org/indy.html


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com
Cowboy (Gregory A. Beamer)
2/9/2004 8:02:00 AM
When email messages are relayed, they can be sent with HELO or EHLO
(extended HELO). When we had a problem getting outside the domain, we moved
from HELO to EHLO. In our case, we were using OpenSmtp, an open source .NET
project on SourceForge:
http://sourceforge.net/projects/opensmtp-net/

Did not realize the sysdate issue, so I would try there before moving to
another piece of software.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
[quoted text, click to view]

Chad Z. Hower aka Kudzu
2/10/2004 9:03:47 PM
"Cowboy \(Gregory A. Beamer\)" <NoSpamMgbworld@comcast.netNoSpamM> wrote in
news:#xRVAVx7DHA.2712@tk2msftngp13.phx.gbl:
[quoted text, click to view]

Indy supports EHLO, as well as all the ESMTP extensions.

http://www.indyproject.org/indy.html


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com
Gene Ariani
2/15/2004 10:09:19 PM
I have the following code for SMTP mail program

Dim Message As New System.Web.Mail.MailMessage
Message.To = "gariani@yahoo.com"
Message.From = "gariani@mycompany.net"
Message.Body = "Test message text"
Message.Subject = "A Test"
System.Web.Mail.SmtpMail.SmtpServer = "mail.mycompany.net"
System.Web.Mail.SmtpMail.Send(Message)

if the To part is to an external address like Message.To = gariani@yahoo.com
then I get Could not access 'CDO.Message' object error
however if I change To part to an internal company address like Message.To =
gariani@mycompany.net then the code works.

It looks like System.Web.Mail.SmtpMail.SmtpServer is looking for the
recipient SMTP instead of the server.

Am I missing something. Any direction is appreciated it.

AddThis Social Bookmark Button