473,394 Members | 1,852 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

CDO Mail

I am trying to setup an error reporting system for our Intranet. We have a
Windows 2000 Server with SQL Server and we have an Exchange Server 5.5. I
need to set it up so I can use CDO mail. I have used CDO before, but have
never set it up to work. I built a small little page with some CDO code on
it, but I get an error when I try to run it. How can I set this up to send
mail from the webserver to people in our facility?

Thanks,
Drew
Jul 19 '05 #1
8 2685
What error? And with what snippet of code?

Ray at work

"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:O5**************@tk2msftngp13.phx.gbl...
I am trying to setup an error reporting system for our Intranet. We have a
Windows 2000 Server with SQL Server and we have an Exchange Server 5.5. I
need to set it up so I can use CDO mail. I have used CDO before, but have
never set it up to work. I built a small little page with some CDO code
on
it, but I get an error when I try to run it. How can I set this up to
send
mail from the webserver to people in our facility?

Thanks,
Drew

Jul 19 '05 #2
Sorry about the lack of details, I was trying to get the question out there
before I left for lunch...

Here is the code snippet I used.

<%
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")

objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"

Dim txtSubject
txtSubject = "TESTING CDO Mail"

objCDO.Subject = "TEST"
objCDO.Body = txtSubject
objCDO.Send
%>

(I of course used @ instead of ATNOSPAM, just trying to keep my email addy
from those email address robots!)

Here is the error I received,

Error Type:
(0x80090020)
An internal error occurred.
/swvtc/cdotest.asp, line 15

Line 15 is, objCDO.Send

Thanks,
Drew
"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:%2****************@TK2MSFTNGP11.phx.gbl...
What error? And with what snippet of code?

Ray at work

"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:O5**************@tk2msftngp13.phx.gbl...
I am trying to setup an error reporting system for our Intranet. We have a Windows 2000 Server with SQL Server and we have an Exchange Server 5.5. I need to set it up so I can use CDO mail. I have used CDO before, but have never set it up to work. I built a small little page with some CDO code
on
it, but I get an error when I try to run it. How can I set this up to
send
mail from the webserver to people in our facility?

Thanks,
Drew


Jul 19 '05 #3
For starters, stop using CDONTS.NewMail. See http://www.aspfaq.com/2026 for
better techniques.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#h**************@tk2msftngp13.phx.gbl...
Sorry about the lack of details, I was trying to get the question out there before I left for lunch...

Here is the code snippet I used.

<%
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")

objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"

Dim txtSubject
txtSubject = "TESTING CDO Mail"

objCDO.Subject = "TEST"
objCDO.Body = txtSubject
objCDO.Send
%>

(I of course used @ instead of ATNOSPAM, just trying to keep my email addy
from those email address robots!)

Here is the error I received,

Error Type:
(0x80090020)
An internal error occurred.
/swvtc/cdotest.asp, line 15

Line 15 is, objCDO.Send

Thanks,
Drew
"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:%2****************@TK2MSFTNGP11.phx.gbl...
What error? And with what snippet of code?

Ray at work

"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:O5**************@tk2msftngp13.phx.gbl...
I am trying to setup an error reporting system for our Intranet. We have
a
Windows 2000 Server with SQL Server and we have an Exchange Server
5.5.
I need to set it up so I can use CDO mail. I have used CDO before, but have never set it up to work. I built a small little page with some CDO

code on
it, but I get an error when I try to run it. How can I set this up to
send
mail from the webserver to people in our facility?

Thanks,
Drew



Jul 19 '05 #4
If I use the following code,

<%
sch = "http://schemas.microsoft.com/cdo/configuration/"

Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "<enter_mail.server_here>"
.update
End With

Set cdoMessage = CreateObject("CDO.Message")

With cdoMessage
Set .Configuration = cdoConfig
.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With

Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>

I get this error,

Error Type:
Microsoft VBScript runtime (0x800A0030)
Error in loading DLL: 'cdoConfig.Fields'
/swvtc/cdotest.asp, line 7

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:ey*************@tk2msftngp13.phx.gbl...
For starters, stop using CDONTS.NewMail. See http://www.aspfaq.com/2026 for better techniques.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#h**************@tk2msftngp13.phx.gbl...
Sorry about the lack of details, I was trying to get the question out

there
before I left for lunch...

Here is the code snippet I used.

<%
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")

objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"

Dim txtSubject
txtSubject = "TESTING CDO Mail"

objCDO.Subject = "TEST"
objCDO.Body = txtSubject
objCDO.Send
%>

(I of course used @ instead of ATNOSPAM, just trying to keep my email addy
from those email address robots!)

Here is the error I received,

Error Type:
(0x80090020)
An internal error occurred.
/swvtc/cdotest.asp, line 15

Line 15 is, objCDO.Send

Thanks,
Drew
"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:%2****************@TK2MSFTNGP11.phx.gbl...
What error? And with what snippet of code?

Ray at work

"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:O5**************@tk2msftngp13.phx.gbl...
>I am trying to setup an error reporting system for our Intranet. We have
a
> Windows 2000 Server with SQL Server and we have an Exchange Server

5.5.
I
> need to set it up so I can use CDO mail. I have used CDO before, but have
> never set it up to work. I built a small little page with some CDO

code > on
> it, but I get an error when I try to run it. How can I set this up

to > send
> mail from the webserver to people in our facility?
>
> Thanks,
> Drew
>
>



Jul 19 '05 #5
What operating system? What service pack?

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#7**************@tk2msftngp13.phx.gbl...
If I use the following code,

<%
sch = "http://schemas.microsoft.com/cdo/configuration/"

Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "<enter_mail.server_here>"
.update
End With

Set cdoMessage = CreateObject("CDO.Message")

With cdoMessage
Set .Configuration = cdoConfig
.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With

Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>

I get this error,

Error Type:
Microsoft VBScript runtime (0x800A0030)
Error in loading DLL: 'cdoConfig.Fields'
/swvtc/cdotest.asp, line 7

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:ey*************@tk2msftngp13.phx.gbl...
For starters, stop using CDONTS.NewMail. See http://www.aspfaq.com/2026 for
better techniques.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#h**************@tk2msftngp13.phx.gbl...
Sorry about the lack of details, I was trying to get the question out

there
before I left for lunch...

Here is the code snippet I used.

<%
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")

objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"

Dim txtSubject
txtSubject = "TESTING CDO Mail"

objCDO.Subject = "TEST"
objCDO.Body = txtSubject
objCDO.Send
%>

(I of course used @ instead of ATNOSPAM, just trying to keep my email addy from those email address robots!)

Here is the error I received,

Error Type:
(0x80090020)
An internal error occurred.
/swvtc/cdotest.asp, line 15

Line 15 is, objCDO.Send

Thanks,
Drew
"Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote in
message news:%2****************@TK2MSFTNGP11.phx.gbl...
> What error? And with what snippet of code?
>
> Ray at work
>
> "Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
> news:O5**************@tk2msftngp13.phx.gbl...
> >I am trying to setup an error reporting system for our Intranet.
We
have
a
> > Windows 2000 Server with SQL Server and we have an Exchange Server

5.5.
I
> > need to set it up so I can use CDO mail. I have used CDO before, but have
> > never set it up to work. I built a small little page with some
CDO code
> > on
> > it, but I get an error when I try to run it. How can I set this

up to > > send
> > mail from the webserver to people in our facility?
> >
> > Thanks,
> > Drew
> >
> >
>
>



Jul 19 '05 #6
Windows 2000 Server SP 4

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:e9**************@TK2MSFTNGP12.phx.gbl...
What operating system? What service pack?

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#7**************@tk2msftngp13.phx.gbl...
If I use the following code,

<%
sch = "http://schemas.microsoft.com/cdo/configuration/"

Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "<enter_mail.server_here>"
.update
End With

Set cdoMessage = CreateObject("CDO.Message")

With cdoMessage
Set .Configuration = cdoConfig
.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With

Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>

I get this error,

Error Type:
Microsoft VBScript runtime (0x800A0030)
Error in loading DLL: 'cdoConfig.Fields'
/swvtc/cdotest.asp, line 7

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:ey*************@tk2msftngp13.phx.gbl...
For starters, stop using CDONTS.NewMail. See http://www.aspfaq.com/2026
for
better techniques.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#h**************@tk2msftngp13.phx.gbl...
> Sorry about the lack of details, I was trying to get the question
out there
> before I left for lunch...
>
> Here is the code snippet I used.
>
> <%
> Dim objCDO
> Set objCDO = Server.CreateObject("CDONTS.NewMail")
>
> objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
> objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
>
> Dim txtSubject
> txtSubject = "TESTING CDO Mail"
>
> objCDO.Subject = "TEST"
> objCDO.Body = txtSubject
> objCDO.Send
> %>
>
> (I of course used @ instead of ATNOSPAM, just trying to keep my email
addy
> from those email address robots!)
>
> Here is the error I received,
>
> Error Type:
> (0x80090020)
> An internal error occurred.
> /swvtc/cdotest.asp, line 15
>
> Line 15 is, objCDO.Send
>
> Thanks,
> Drew
>
>
> "Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com> wrote
in > message news:%2****************@TK2MSFTNGP11.phx.gbl...
> > What error? And with what snippet of code?
> >
> > Ray at work
> >
> > "Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
> > news:O5**************@tk2msftngp13.phx.gbl...
> > >I am trying to setup an error reporting system for our Intranet.

We have
> a
> > > Windows 2000 Server with SQL Server and we have an Exchange Server 5.5.
> I
> > > need to set it up so I can use CDO mail. I have used CDO
before, but
> have
> > > never set it up to work. I built a small little page with some

CDO code
> > > on
> > > it, but I get an error when I try to run it. How can I set this

up
to
> > > send
> > > mail from the webserver to people in our facility?
> > >
> > > Thanks,
> > > Drew
> > >
> > >
> >
> >
>
>



Jul 19 '05 #7
Can you try reinstalling the latest scripting engine 5.6? Maybe that will
reinstate the relevant DLLs...

http://msdn.microsoft.com/downloads/list/webdev.asp

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:up**************@TK2MSFTNGP11.phx.gbl...
Windows 2000 Server SP 4

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:e9**************@TK2MSFTNGP12.phx.gbl...
What operating system? What service pack?

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#7**************@tk2msftngp13.phx.gbl...
If I use the following code,

<%
sch = "http://schemas.microsoft.com/cdo/configuration/"

Set cdoConfig = CreateObject("CDO.Configuration")

With cdoConfig.Fields
.Item(sch & "sendusing") = 2 ' cdoSendUsingPort
.Item(sch & "smtpserver") = "<enter_mail.server_here>"
.update
End With

Set cdoMessage = CreateObject("CDO.Message")

With cdoMessage
Set .Configuration = cdoConfig
.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
.Subject = "Sample CDO Message"
.TextBody = "This is a test for CDO.message"
.Send
End With

Set cdoMessage = Nothing
Set cdoConfig = Nothing
%>

I get this error,

Error Type:
Microsoft VBScript runtime (0x800A0030)
Error in loading DLL: 'cdoConfig.Fields'
/swvtc/cdotest.asp, line 7

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:ey*************@tk2msftngp13.phx.gbl...
> For starters, stop using CDONTS.NewMail. See http://www.aspfaq.com/2026 for
> better techniques.
>
> --
> http://www.aspfaq.com/
> (Reverse address to reply.)
>
>
>
>
> "Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
> news:#h**************@tk2msftngp13.phx.gbl...
> > Sorry about the lack of details, I was trying to get the question out > there
> > before I left for lunch...
> >
> > Here is the code snippet I used.
> >
> > <%
> > Dim objCDO
> > Set objCDO = Server.CreateObject("CDONTS.NewMail")
> >
> > objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
> > objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
> >
> > Dim txtSubject
> > txtSubject = "TESTING CDO Mail"
> >
> > objCDO.Subject = "TEST"
> > objCDO.Body = txtSubject
> > objCDO.Send
> > %>
> >
> > (I of course used @ instead of ATNOSPAM, just trying to keep my email addy
> > from those email address robots!)
> >
> > Here is the error I received,
> >
> > Error Type:
> > (0x80090020)
> > An internal error occurred.
> > /swvtc/cdotest.asp, line 15
> >
> > Line 15 is, objCDO.Send
> >
> > Thanks,
> > Drew
> >
> >
> > "Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com>
wrote
in > > message news:%2****************@TK2MSFTNGP11.phx.gbl...
> > > What error? And with what snippet of code?
> > >
> > > Ray at work
> > >
> > > "Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
> > > news:O5**************@tk2msftngp13.phx.gbl...
> > > >I am trying to setup an error reporting system for our
Intranet.
We
> have
> > a
> > > > Windows 2000 Server with SQL Server and we have an Exchange Server > 5.5.
> > I
> > > > need to set it up so I can use CDO mail. I have used CDO before, but
> > have
> > > > never set it up to work. I built a small little page with

some CDO
> code
> > > > on
> > > > it, but I get an error when I try to run it. How can I set
this up
to
> > > > send
> > > > mail from the webserver to people in our facility?
> > > >
> > > > Thanks,
> > > > Drew
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Jul 19 '05 #8
I will, but since I am only the "humble programmer" and I don't have any
control over the server, I will have to wait until tommarow, or maybe the
beginning of next week. I really appreciate your time and help on this
issue. If I continue to have problems after reinstalling scripting engine
5.6, I will post again.

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2***************@TK2MSFTNGP11.phx.gbl...
Can you try reinstalling the latest scripting engine 5.6? Maybe that will
reinstate the relevant DLLs...

http://msdn.microsoft.com/downloads/list/webdev.asp

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:up**************@TK2MSFTNGP11.phx.gbl...
Windows 2000 Server SP 4

Thanks,
Drew

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:e9**************@TK2MSFTNGP12.phx.gbl...
What operating system? What service pack?

--
http://www.aspfaq.com/
(Reverse address to reply.)


"Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
news:#7**************@tk2msftngp13.phx.gbl...
> If I use the following code,
>
> <%
> sch = "http://schemas.microsoft.com/cdo/configuration/"
>
> Set cdoConfig = CreateObject("CDO.Configuration")
>
> With cdoConfig.Fields
> .Item(sch & "sendusing") = 2 ' cdoSendUsingPort
> .Item(sch & "smtpserver") = "<enter_mail.server_here>"
> .update
> End With
>
> Set cdoMessage = CreateObject("CDO.Message")
>
> With cdoMessage
> Set .Configuration = cdoConfig
> .From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
> .To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
> .Subject = "Sample CDO Message"
> .TextBody = "This is a test for CDO.message"
> .Send
> End With
>
> Set cdoMessage = Nothing
> Set cdoConfig = Nothing
> %>
>
> I get this error,
>
> Error Type:
> Microsoft VBScript runtime (0x800A0030)
> Error in loading DLL: 'cdoConfig.Fields'
> /swvtc/cdotest.asp, line 7
>
> Thanks,
> Drew
>
> "Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
> news:ey*************@tk2msftngp13.phx.gbl...
> > For starters, stop using CDONTS.NewMail. See

http://www.aspfaq.com/2026
> for
> > better techniques.
> >
> > --
> > http://www.aspfaq.com/
> > (Reverse address to reply.)
> >
> >
> >
> >
> > "Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
> > news:#h**************@tk2msftngp13.phx.gbl...
> > > Sorry about the lack of details, I was trying to get the
question
out
> > there
> > > before I left for lunch...
> > >
> > > Here is the code snippet I used.
> > >
> > > <%
> > > Dim objCDO
> > > Set objCDO = Server.CreateObject("CDONTS.NewMail")
> > >
> > > objCDO.To = "drew.laingATNOSPAMswvtc.dmhmrsas.virginia.gov "
> > > objCDO.From = "adminATNOSPAMswvtc.dmhmrsas.virginia.gov"
> > >
> > > Dim txtSubject
> > > txtSubject = "TESTING CDO Mail"
> > >
> > > objCDO.Subject = "TEST"
> > > objCDO.Body = txtSubject
> > > objCDO.Send
> > > %>
> > >
> > > (I of course used @ instead of ATNOSPAM, just trying to keep my

email
> addy
> > > from those email address robots!)
> > >
> > > Here is the error I received,
> > >
> > > Error Type:
> > > (0x80090020)
> > > An internal error occurred.
> > > /swvtc/cdotest.asp, line 15
> > >
> > > Line 15 is, objCDO.Send
> > >
> > > Thanks,
> > > Drew
> > >
> > >
> > > "Ray at <%=sLocation%> [MVP]" <myfirstname at lane34 dot com>

wrote
in
> > > message news:%2****************@TK2MSFTNGP11.phx.gbl...
> > > > What error? And with what snippet of code?
> > > >
> > > > Ray at work
> > > >
> > > > "Drew" <dl****@NOswvtc.state.va.SPAMus> wrote in message
> > > > news:O5**************@tk2msftngp13.phx.gbl...
> > > > >I am trying to setup an error reporting system for our

Intranet. We
> > have
> > > a
> > > > > Windows 2000 Server with SQL Server and we have an Exchange

Server
> > 5.5.
> > > I
> > > > > need to set it up so I can use CDO mail. I have used CDO

before,
> but
> > > have
> > > > > never set it up to work. I built a small little page with some CDO
> > code
> > > > > on
> > > > > it, but I get an error when I try to run it. How can I set this up
> to
> > > > > send
> > > > > mail from the webserver to people in our facility?
> > > > >
> > > > > Thanks,
> > > > > Drew
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Jul 19 '05 #9

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

Similar topics

0
by: Merijn Boom | last post by:
Hi there, I'm trying to create an html mail with embedded pictures in it. I run perl on Windows and Red Hat but I cannot get your module (Mail::Sender) to work. I'm just trying to run the...
6
by: DigitalRick | last post by:
I have been running CDONTS in my ASPpages to send emails to me sent from my guestbook. It had been working fine untill I upgraded to Server 2003 (I am also running Exchange 2003) all locally. I...
3
by: Phil Mc | last post by:
Hi has anyone come accross the problem.... with referance to System.Web.Mail.MailMessage and System.Web.Mail.SmtpMail THIS WORKS FINE mail=new MailMessage(); mail.From =...
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...
34
by: antonyliu2002 | last post by:
I've set up the virtual smtp server on my IIS 5.1 like so: 1. Assign IP address to "All Unassigned", and listen to port 25. 2. Access Connection granted to "127.0.0.1". 3. Relay only allow...
4
by: J Huntley Palmer | last post by:
How may I setup a proper HTML mail message with embedded href links using PHP, that follows all the MIME rules? Any examples or links would be appreciated. Thanks!
2
by: clevrmnkey | last post by:
I've had nothing but trouble from the System.Net.Mail objects, but I finally need to make them work, and I can't for the life of me see what I'm doing wrong. I pared back my mail transaction to...
6
by: cover | last post by:
I'm using PHP 5 at home w/Apache & MySQL on a test system where I write through a form to a database and also send an email to people on a drop down list. Purpose for this is an electronic log at...
2
by: Ruud | last post by:
Just before leaving for a holiday my collegue modified this script. Now it won't send any body text (The data filled in on the form) and in an error condition it won't send any attachments either....
2
mikek12004
by: mikek12004 | last post by:
Before posting here I google it and saw ablut 30 pages for a solution so I pretty much excluded the obvious things. The code is <?php //now to send the mails to seller...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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...

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.