[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-developers] Re: Mail in asp in cobalt
- Subject: [cobalt-developers] Re: Mail in asp in cobalt
- From: ashwin.gada@xxxxxxxxxxxx
- Date: Thu Aug 1 14:57:03 2002
- List-id: Discussion Forum for developers on Sun Cobalt Networks products <cobalt-developers.list.cobalt.com>
his does not seem to be working
i got the following error
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/~aspwizard/testmail.asp, line 1
Systemmessage, messageid = 0x800401f3
while running the following asp script
<%
set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.Host = "asp.nieto.net"
objCDOMail.From = "Your Name" & " <your.name@xxxxxxxxxxxxx>"
objCDOMail.To = "ashwin.gada@xxxxxxxxxxxx"
objCDOMail.Cc = "ashwin.gada@xxxxxxxxxxxx"
objCDOMail.Bcc = "ashwin.gada@xxxxxxxxxxxx"
objCDOMail.Subject = "This is the mail Subject"
objCDOMail.Body = "Here goes your story."
objCDOMail.Importance = 1
'//:0=low 1=normal 2=high
objCDOMail.Send
set objCDOMail = Nothing
%>