473,471 Members | 2,140 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Cannot send email using SMTP

We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to
send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The
server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are
connected to the internet via DSL. Otherwise, everything
else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files,
MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do
not know how to help ourselves. Also, the web app is our
first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can
follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb.
aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

Nov 17 '05 #1
9 4289
what happens if you change
Mail.SmtpMail.SmtpServer = "localhost"
to
Mail.SmtpMail.SmtpServer = "xxx.xxx.xxx.xxx"
being the IP address

Also, I am running an IIS server that uses SMTP to send email in an
evironment where there is an exchange server. We had to setup something in
the exchange server to allow the IIS email to send SMTP mail.

I think that might be your issue.

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to
send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The
server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are
connected to the internet via DSL. Otherwise, everything
else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files,
MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do
not know how to help ourselves. Also, the web app is our
first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can
follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb.
aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

Nov 17 '05 #2
Hi George,

Thanks for the reply; but no luck.

Tried using our IP instead of "localhost"; get this error
instead: The transport failed to connect to the server.

No Exchange Server involvement here possible either as we
do not use it at all.

I still need help.

Bob
-----Original Message-----
what happens if you change
Mail.SmtpMail.SmtpServer = "localhost"
to
Mail.SmtpMail.SmtpServer = "xxx.xxx.xxx.xxx"
being the IP address

Also, I am running an IIS server that uses SMTP to send email in anevironment where there is an exchange server. We had to setup something inthe exchange server to allow the IIS email to send SMTP mail.
I think that might be your issue.

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are connected to the internet via DSL. Otherwise, everything else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files, MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do not know how to help ourselves. Also, the web app is our first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb. aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

.

Nov 17 '05 #3
"mail.yourSMTPDomainNameHere.com"
"smtp.yourSMTPDomainNameHere.com"

or try blank ""

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to
send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The
server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are
connected to the internet via DSL. Otherwise, everything
else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files,
MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do
not know how to help ourselves. Also, the web app is our
first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can
follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb.
aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

Nov 17 '05 #4
check every folder in your \inetpub\mailroot directory.
Is the message getting stuck there?
"Bob Jones" <bo******@toad.net> wrote in message
news:03****************************@phx.gbl...
Hi George,

Thanks for the reply; but no luck.

Tried using our IP instead of "localhost"; get this error
instead: The transport failed to connect to the server.

No Exchange Server involvement here possible either as we
do not use it at all.

I still need help.

Bob
-----Original Message-----
what happens if you change
Mail.SmtpMail.SmtpServer = "localhost"
to
Mail.SmtpMail.SmtpServer = "xxx.xxx.xxx.xxx"
being the IP address

Also, I am running an IIS server that uses SMTP to send

email in an
evironment where there is an exchange server. We had to

setup something in
the exchange server to allow the IIS email to send SMTP

mail.

I think that might be your issue.

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are connected to the internet via DSL. Otherwise, everything else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files, MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do not know how to help ourselves. Also, the web app is our first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb. aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

.

Nov 17 '05 #5
From: in**@YourSMTPDomainName.com or .net or .xxx

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to
send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The
server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are
connected to the internet via DSL. Otherwise, everything
else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files,
MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do
not know how to help ourselves. Also, the web app is our
first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can
follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb.
aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

Nov 17 '05 #6
Using "" generates this error: The "SendUsing"
configuration value is invalid.

Using anything other than "localhost" will generate the
failed to connect...error msg

Thanks for trying; still at a loss.

Bob
-----Original Message-----
"mail.yourSMTPDomainNameHere.com"
"smtp.yourSMTPDomainNameHere.com"

or try blank ""

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are connected to the internet via DSL. Otherwise, everything else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files, MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do not know how to help ourselves. Also, the web app is our first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb. aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

.

Nov 17 '05 #7
Hi Michal,

You are a genius!

Got it to work. FINALLY

Life is beautiful again...

Is this information written down anywhere I could have
located it.

Thank you very much.

Bob
-----Original Message-----
| The server rejected one or more recipient addresses. The| server response was: 550 5.7.1 Unable to relay for
| bo*@cookbookplus.com.com .

Your SMTP server is configured not to allow relaying messages, which isdefault setting on IIS6.

Go to the SMTP virtualserver properties and allow relay for IP address127.0.0.1 (localhost) and all other IPs you want to be able to relay (ie.local network, if any).

--
Michal A. Valasek, Altair Communications, http://www.altaircom.netPlease do not reply to this e-mail, for contact see http://www.rider.cz

.

Nov 17 '05 #8
George,

Got it working

See thread from Michal

Thanks again for your help.

Bob
-----Original Message-----
check every folder in your \inetpub\mailroot directory.
Is the message getting stuck there?
"Bob Jones" <bo******@toad.net> wrote in message
news:03****************************@phx.gbl...
Hi George,

Thanks for the reply; but no luck.

Tried using our IP instead of "localhost"; get this error
instead: The transport failed to connect to the server.

No Exchange Server involvement here possible either as we do not use it at all.

I still need help.

Bob
>-----Original Message-----
>what happens if you change
>Mail.SmtpMail.SmtpServer = "localhost"
>to
>Mail.SmtpMail.SmtpServer = "xxx.xxx.xxx.xxx"
>being the IP address
>
>Also, I am running an IIS server that uses SMTP to send
email in an
>evironment where there is an exchange server. We had
to setup something in
>the exchange server to allow the IIS email to send
SMTP mail.
>
>I think that might be your issue.
>
>"Bob Jones" <bo******@toad.net> wrote in message
>news:0a****************************@phx.gbl...
>> We have developed a commercial ASP.net application
>> (personal nutrition management and tracking); we
want to
>> send smtp email from within it.
>>
>> For our development box, we use WinXP Pro, IIS 5.5,
>> VisualStudio2002, VB as programing language. Our
>> test/development version of the web app as hosted on
>> our "localhost" works fine; our "Default SMTP
Virtual >> Server" is running (per the IIS console).
>>
>> Our simple test page (EmailTest.aspx)is in a separate >> project, has only a single button and we are trying to >> use the following code on the EmailTest.aspx.vb:
>>
>> Private Sub Button1_Click(ByVal sender As

System.Object,
>> ByVal e As System.EventArgs) Handles Button1.Click
>>
>> Dim OK As New Mail.MailMessage()
>> OK.From = "bo******@toad.net"
>> OK.Subject = "Test"
>> OK.Body = "Trying To Send Email"
>> OK.To = "bo*@cookbookplus.com"
>> Mail.SmtpMail.SmtpServer = "localhost"
>>
>> Mail.SmtpMail.Send(OK)
>>
>> End Sub
>>
>> The line Mail.SmtpMail.Send(OK) always throws an
>> exception; we always get this error:
>>
>> The server rejected one or more recipient addresses.

The
>> server response was: 550 5.7.1 Unable to relay for
>> bo*@cookbookplus.com.com .
>>
>> It does not matter who the recipient is, either. We

are
>> connected to the internet via DSL. Otherwise,

everything
>> else related to our stuff seems to work perfectly.
>>
>> Have spent way too many man hours researching help

files,
>> MSDN KnowledgeBase, etc. No luck. I am sure we are
>> doing soming wrong, but have no idea what.
>>
>> Our only prior experience with email code has been with >> MS Access using VBA. We know this is our mistake, just do
>> not know how to help ourselves. Also, the web app
is our
>> first try using ASP.net, etc. Generally, the app

works >> works great!
>>
>> Can anyone please help; or provide a good example we

can
>> follow?
>>
>> FYI, our web site is http://www.cookbookplus.com
>>
>> If curious, you can see the app using
>> the "CookBookPlusOnTheWeb" link on the home page.
>>
>> Or use
>>

http://www.cookbookplus.com/CookBook...heWeb/LogInWeb.
>> aspx for a direct link.
>>
>> The app is hosted on a Windows Server 2003 system so
>> whatever we do must work with IIS 6 when we deploy.
>>
>> Thank you.
>> Bob Jones
>> bo******@toad.net
>> bo*@cookbookplus.com
>> 4106267564
>>
>
>
>.
>

.

Nov 17 '05 #9
Got it working!!

See thread from Michal

Thanks again for assisting.

Bob
-----Original Message-----
"mail.yourSMTPDomainNameHere.com"
"smtp.yourSMTPDomainNameHere.com"

or try blank ""

"Bob Jones" <bo******@toad.net> wrote in message
news:0a****************************@phx.gbl...
We have developed a commercial ASP.net application
(personal nutrition management and tracking); we want to send smtp email from within it.

For our development box, we use WinXP Pro, IIS 5.5,
VisualStudio2002, VB as programing language. Our
test/development version of the web app as hosted on
our "localhost" works fine; our "Default SMTP Virtual
Server" is running (per the IIS console).

Our simple test page (EmailTest.aspx)is in a separate
project, has only a single button and we are trying to
use the following code on the EmailTest.aspx.vb:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim OK As New Mail.MailMessage()
OK.From = "bo******@toad.net"
OK.Subject = "Test"
OK.Body = "Trying To Send Email"
OK.To = "bo*@cookbookplus.com"
Mail.SmtpMail.SmtpServer = "localhost"

Mail.SmtpMail.Send(OK)

End Sub

The line Mail.SmtpMail.Send(OK) always throws an
exception; we always get this error:

The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for
bo*@cookbookplus.com.com .

It does not matter who the recipient is, either. We are connected to the internet via DSL. Otherwise, everything else related to our stuff seems to work perfectly.

Have spent way too many man hours researching help files, MSDN KnowledgeBase, etc. No luck. I am sure we are
doing soming wrong, but have no idea what.

Our only prior experience with email code has been with
MS Access using VBA. We know this is our mistake, just do not know how to help ourselves. Also, the web app is our first try using ASP.net, etc. Generally, the app works
works great!

Can anyone please help; or provide a good example we can follow?

FYI, our web site is http://www.cookbookplus.com

If curious, you can see the app using
the "CookBookPlusOnTheWeb" link on the home page.

Or use
http://www.cookbookplus.com/CookBook...heWeb/LogInWeb. aspx for a direct link.

The app is hosted on a Windows Server 2003 system so
whatever we do must work with IIS 6 when we deploy.

Thank you.
Bob Jones
bo******@toad.net
bo*@cookbookplus.com
4106267564

.

Nov 17 '05 #10

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

Similar topics

0
by: James Hong | last post by:
Help please, I try to sending an email from my html page using the java applet. but it give error on most of the PC only very few work, what is the error i make the java applet show as below ...
8
by: baustin75 | last post by:
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie only when debugging in php designer 2005 -------------------------------------------------------------------------------- ...
6
by: John J. Hughes II | last post by:
I have a service that needs to send e-mail alerts. I have been attempting to use the System.Net.Mail function from .NET but this seems to require the IIS be installed and running. Since some of...
5
by: Andreas | last post by:
I am working with three computers, my developing computer, a Web Server and a Mail Server (Exchange). I am trying to send a email from the Web Server via the Mail Server to a valid email address...
3
by: RN | last post by:
I am tired of sending mail from the built-in SMTP service for so many reasons (errors are nondescriptive in the event log, it doesn't let me control which IP address it sends from, and it...
14
by: supz | last post by:
Hi, I use the standard code given below to send an email from an ASP.NET web form. The code executes fine but no Email is sent. All emails get queued in the Inetpub mail queue. I'm using my...
5
by: Chris | last post by:
I am trying to send email in C#. I wrote 2 pieces of code: 1. MailMessage mail = new MailMessage(); mail.From = "from_address"; mail.To = "to_address"; mail.Subject = "subject"; mail.BodyFormat...
8
by: shapper | last post by:
Hello, I am trying to send an email using Asp.Net 2.0. I am getting the following error: System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable. The server response was: No such...
5
by: =?Utf-8?B?bW9tbw==?= | last post by:
Hello, I've been having a prlbem sending an email using ASP.net 2.0 I can send an email if “To” address is hotmail, gmail or yahoo but not other addresses. Does anyone know how I can...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.