472,334 Members | 2,366 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,334 software developers and data experts.

ASP.NET mail error: The transport failed to connect to the server

Hello group:

I have reached the end of my rope with this error. I have pretty much tried every suggestion I've found thus far and I
get this error no matter what I do. I did try using the CDOSYS test from Microsoft as a test for the smtpserver, and it'll send that way.
Here's my existing code:

Public Sub SendMail()

Dim myMailMsg As New Mail.MailMessage()

With myMailMsg
.To = "<Send to address">
.From = <"Send From Address">
.Subject = "Test message"
.Body = "This is a test."
.BodyFormat = Mail.MailFormat.Text
End With

Mail.SmtpMail.SmtpServer = "<smtp server>"
Mail.SmtpMail.Send(myMailMsg)

End Sub

For my SmtpServer, I've used localhost, smarthost, the actual value of our corporate smtp server address - nothing changes. I always get that
error message.

I have modifed the machine.config file, given the ASP.NET user process admin (temp) access, assigned the machine id of 127.0.0.1 to the Access tab for the relay settings, and every other suggestion I've found - nothing at all seems to make any change. I'm using Windows Server 2003.

Can someone please help me? I don't know what else to do.

Thanks,

James Lankford
Nov 17 '05 #1
12 10239
i too faced a similar problem once.

it turned out that my mail server required that the sender be on the same domain as the smtp server.
eg: if my smtp server is "mail.abc.com"... then the sender has to be so*****@abc.com.

just see if this applies to you as well.

regards,
Nauzad Kapadia
"James Lankford" <dr*********@hotmail.com> wrote in message news:vr************@corp.supernews.com...
Hello group:

I have reached the end of my rope with this error. I have pretty much tried every suggestion I've found thus far and I
get this error no matter what I do. I did try using the CDOSYS test from Microsoft as a test for the smtpserver, and it'll send that way.
Here's my existing code:

Public Sub SendMail()

Dim myMailMsg As New Mail.MailMessage()

With myMailMsg
.To = "<Send to address">
.From = <"Send From Address">
.Subject = "Test message"
.Body = "This is a test."
.BodyFormat = Mail.MailFormat.Text
End With

Mail.SmtpMail.SmtpServer = "<smtp server>"
Mail.SmtpMail.Send(myMailMsg)

End Sub

For my SmtpServer, I've used localhost, smarthost, the actual value of our corporate smtp server address - nothing changes. I always get that
error message.

I have modifed the machine.config file, given the ASP.NET user process admin (temp) access, assigned the machine id of 127.0.0.1 to the Access tab for the relay settings, and every other suggestion I've found - nothing at all seems to make any change. I'm using Windows Server 2003.

Can someone please help me? I don't know what else to do.

Thanks,

James Lankford
Nov 17 '05 #2
just comment smtpserver name line
(>Mail.SmtpMail.SmtpServer = "<smtp server>") and try.
In .Net 1.1 this property assigned to local machine by
default, for 1.0 give proper name of the machine.
windows 2003 runs under .net 1.1
it worked for me!
hope this will help.

bye
-----Original Message-----
Hello group:

I have reached the end of my rope with this error. I have pretty much tried every suggestion I've found thus far and
Iget this error no matter what I do. I did try using the CDOSYS test from Microsoft as a test for the smtpserver,
and it'll send that way.Here's my existing code:

Public Sub SendMail()

Dim myMailMsg As New Mail.MailMessage()

With myMailMsg
.To = "<Send to address">
.From = <"Send From Address">
.Subject = "Test message"
.Body = "This is a test."
.BodyFormat = Mail.MailFormat.Text
End With

Mail.SmtpMail.SmtpServer = "<smtp server>"
Mail.SmtpMail.Send(myMailMsg)

End Sub

For my SmtpServer, I've used localhost, smarthost, the actual value of our corporate smtp server address -
nothing changes. I always get thaterror message.

I have modifed the machine.config file, given the ASP.NET user process admin (temp) access, assigned the machine id
of 127.0.0.1 to the Access tab for the relay settings, and
every other suggestion I've found - nothing at all seems
to make any change. I'm using Windows Server 2003.
Can someone please help me? I don't know what else to do.

Thanks,

James Lankford

Nov 17 '05 #3
I don't think I can really do that though, because the server is not the
smtp server, we are using a corporate server. If I remove that line, then
the code will "assume" the local box is the smtpserver. Anyway, I had
already tried that, but it doesn't make any difference either.

--
James Lankford

"thropde" <an*******@discussions.microsoft.com> wrote in message
news:03****************************@phx.gbl...
just comment smtpserver name line
(>Mail.SmtpMail.SmtpServer = "<smtp server>") and try.
In .Net 1.1 this property assigned to local machine by
default, for 1.0 give proper name of the machine.
windows 2003 runs under .net 1.1
it worked for me!
hope this will help.

bye
-----Original Message-----
Hello group:

I have reached the end of my rope with this error. I have

pretty much tried every suggestion I've found thus far and
I
get this error no matter what I do. I did try using the

CDOSYS test from Microsoft as a test for the smtpserver,
and it'll send that way.
Here's my existing code:

Public Sub SendMail()

Dim myMailMsg As New Mail.MailMessage()

With myMailMsg
.To = "<Send to address">
.From = <"Send From Address">
.Subject = "Test message"
.Body = "This is a test."
.BodyFormat = Mail.MailFormat.Text
End With

Mail.SmtpMail.SmtpServer = "<smtp server>"
Mail.SmtpMail.Send(myMailMsg)

End Sub

For my SmtpServer, I've used localhost, smarthost, the

actual value of our corporate smtp server address -
nothing changes. I always get that
error message.

I have modifed the machine.config file, given the ASP.NET

user process admin (temp) access, assigned the machine id
of 127.0.0.1 to the Access tab for the relay settings, and
every other suggestion I've found - nothing at all seems
to make any change. I'm using Windows Server 2003.

Can someone please help me? I don't know what else to do.

Thanks,

James Lankford

Nov 17 '05 #4
The box I'm trying this on is not directly on the domain on as the SMTP server, but it is trusted by that server. In addition, I had to request that box be added to the list of the SMTP server to be allowed to relay through it. I will look into this and see if it affects my situation.

Thanks,

--
James Lankford
"Nauzad Kapadia" <na*****@yahoo.com> wrote in message news:uP**************@tk2msftngp13.phx.gbl...
i too faced a similar problem once.

it turned out that my mail server required that the sender be on the same domain as the smtp server.
eg: if my smtp server is "mail.abc.com"... then the sender has to be so*****@abc.com.

just see if this applies to you as well.

regards,
Nauzad Kapadia
"James Lankford" <dr*********@hotmail.com> wrote in message news:vr************@corp.supernews.com...
Hello group:

I have reached the end of my rope with this error. I have pretty much tried every suggestion I've found thus far and I
get this error no matter what I do. I did try using the CDOSYS test from Microsoft as a test for the smtpserver, and it'll send that way.
Here's my existing code:

Public Sub SendMail()

Dim myMailMsg As New Mail.MailMessage()

With myMailMsg
.To = "<Send to address">
.From = <"Send From Address">
.Subject = "Test message"
.Body = "This is a test."
.BodyFormat = Mail.MailFormat.Text
End With

Mail.SmtpMail.SmtpServer = "<smtp server>"
Mail.SmtpMail.Send(myMailMsg)

End Sub

For my SmtpServer, I've used localhost, smarthost, the actual value of our corporate smtp server address - nothing changes. I always get that
error message.

I have modifed the machine.config file, given the ASP.NET user process admin (temp) access, assigned the machine id of 127.0.0.1 to the Access tab for the relay settings, and every other suggestion I've found - nothing at all seems to make any change. I'm using Windows Server 2003.

Can someone please help me? I don't know what else to do.

Thanks,

James Lankford
Nov 17 '05 #5
Hi James,

Firstly I want to thank all the people who provided help in this issue.

To isolate the root cause of this issue, I suggest that we test the
following console sample. Can you reproduce the same error?

HOWTO: Send E-mail Programmatically with System.Web.Mail and Visual Basic
..NET
http://support.microsoft.com/?id=314201

If I have misunderstood your concern, please feel free to let me know.

Best regards,

Jacob Yang
Microsoft Online Partner Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

Nov 17 '05 #6
Jacob,

Thanks again for your help. By using the example you gave via
Microsoft's knowledge site, I found (I think) what the problem was, although
the error message was confusing. I dropped in the code from the article
below, and it worked - absolutely no problem. But then I realized that the
code from that example was practically identical to mine.......except mainly
for one line.

In my declaration, I used:
Dim myMailMsg As New MailMessage()

In your example, the code used:
Dim oMsg As MailMessage = New MailMessage()

The difference was that I did not declare the variable type first, I was
just setting my variable equal to a new instance of the MailMessage Class
without declaring it "as" a MailMessage type variable.

What is strange, is that my original code worked on a Windows 2000 server,
but it did not on Windows 2003 Server, with both running the .NET Framework
version 1.1. The error would occur when the Send method was called on the
Mail.SmtpMail class.

I guess the error message was confusing because I normally am used to seeing
some sort of "object reference not set to an instance of an object" type
error.

Thoughts?

--
James Lankford
"Jacob Yang [MSFT]" <ji***@online.microsoft.com> wrote in message
news:xO*************@cpmsftngxa06.phx.gbl...
Hi James,

Firstly I want to thank all the people who provided help in this issue.

To isolate the root cause of this issue, I suggest that we test the
following console sample. Can you reproduce the same error?

HOWTO: Send E-mail Programmatically with System.Web.Mail and Visual Basic
.NET
http://support.microsoft.com/?id=314201

If I have misunderstood your concern, please feel free to let me know.

Best regards,

Jacob Yang
Microsoft Online Partner Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

Nov 17 '05 #7
Hi James,

Thank you for your update. I am very glad to know that the original problem
is resolved.

As I understand, now you want to know why the error message is "The
transport failed to connect to the server". You think that it should be
something like "object reference not set to an instance of an object". Is
it correct?

If I have misunderstood your concern, please feel free to let me know.

Best regards,

Jacob Yang
Microsoft Online Partner Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

Nov 18 '05 #8
Hi Jacob,

Yes, That is correct. It seems like I wasted alot of time trying to
troubleshoot a problem - my own fault, that is - at the expense of a
mis-leading error message.
James Lankford

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #9
Hi James,

Thank you for your update.

I have done a lot of research regarding this issue but I cannot reproduce
the error on my side.

That is to say, the following statement works on my side. (The "()" will be
removed by the VS.NET 2003 IDE automatically.)

Dim oMsg As New MailMessage

The following is my testing code. Please try it on your side.
----------------------------------------------------------------------------
-----------
Imports System.Web.Mail

Module Module1
Sub Main()

'Dim oMsg As MailMessage = New MailMessage

Dim oMsg As New MailMessage
' TODO: Replace with sender e-mail address.
oMsg.From = "ji***@microsoft.com"
' TODO: Replace with recipient e-mail address.
oMsg.To = "ji***@microsoft.com"
oMsg.Subject = "Send using Web Mail"

' SEND IN HTML FORMAT (comment this line to send plain text).
oMsg.BodyFormat = MailFormat.Html

'HTML Body (remove HTML tags for plain text).
oMsg.Body = "<HTML><BODY><B>Hello World!</B></BODY></HTML>"

' ADD AN ATTACHMENT.
' TODO: Replace with path to attachment.
' Dim sFile As String = "C:\temp\Hello.txt"
' Dim oAttch As MailAttachment = New MailAttachment(sFile,
MailEncoding.Base64)
'
' oMsg.Attachments.Add(oAttch)

' TODO: Replace with the name of your remote SMTP server.
SmtpMail.SmtpServer = "smarthost"
SmtpMail.Send(oMsg)

oMsg = Nothing
' oAttch = Nothing
End Sub

End Module
------------------------------------------------------

If I have misunderstood your concern, please feel free to let me know.

Best regards,

Jacob Yang
Microsoft Online Partner Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

Nov 18 '05 #10


James Lankford
MCSE
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #11
Hi James,

Thank you for your update but I cannot see the content of your post. It is
empty.

Would you please repost it? I certainly appreciate your time.

Best regards,

Jacob Yang
Microsoft Online Partner Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

Nov 18 '05 #12
Hi,

I have been getting this error for some time now. What is getting
strange is that:
1. The same code works on our dev and prod servers but not on my
workstation;
2. The code sample from Microsoft's site works on my workstation.

What IS the real problem here?

Thanks a lot,

John

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 18 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: jason | last post by:
I discovered this morning that a few of my sites have routines to automatically email when pages are accessed. These pages were down becuase the...
0
by: Lori McDonald | last post by:
I have code that I am using to sent an HTML email. (see code below) Intermittently I am getting the following error when I try and send an email...
1
by: Sudhan | last post by:
When i am trying to send in asp.net i am geting this Error Message:Transport Failed to connect to the Server. I am using SMTP server in my...
0
by: Hawksey | last post by:
Hello, Has anyone else experienced a similar problem. We get an intermittent error trying to send mail using smtpmail. Our SmtpMail.SmtpServer...
5
by: Nathan Sokalski | last post by:
I am attempting to send an email using ASP.NET 1.1's Mail.SmtpMail.Send() method. My code contains all of the following: Dim mailmsg As New...
0
by: wizromeo | last post by:
Hello, Has anyone else experienced a similar problem. We get an intermittent error trying to send mail using smtpmail. Our SmtpMail.SmtpServer...
1
by: dancer | last post by:
Using Framework 1.1, ASP.net 1.1 I test my applications that send e-mail on my personal computer : iis - local host - wwwroot - no problems. Then...
8
by: kpdeepu | last post by:
Hi all, I am a complete newbie to ASP and am trying to send email from my gmail account to another gmail ID. Is it possible? I have my computer...
5
by: Don Quijote de Nicaragua | last post by:
Hi, everyone I try to send a simple e-mail witch this Code, but always send me a error messages: "ERROR: Failure sending mail." Thansk You. Don...
0
by: daredevil | last post by:
hi all, i am newbie here. i was trying to send mail from ASP, but i encountered the error as below:- CDO.Message.1 (0x80040213) The transport...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.