View Single Post
04-04-2007, 09:46 PM
#2
jabberwocky is offline jabberwocky
jabberwocky's Avatar
Status: Member
Join date: Oct 2005
Location: Calgary, Alberta, Canada
Expertise:
Software:
 
Posts: 278
iTrader: 0 / 0%
 

jabberwocky is on a distinguished road

  Old

k i found this and gave it a try;

Code:
 
<%
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.From = "Trescomedia"
'objCDOMail.To = strEmail
objCDOMail.To = "cfleming@trescoconsoles.com"

objCDOMail.Subject = strSubject
strSubject="Entry posted to Woodriver portal"
strBody = "A New post is up"
objCDOMail.Body = strBody
objCDOMail.Send
Set objCDOMail = Nothing
%>
but now i get this error

Server object error 'ASP 0177 : 800401f3'
which is weird, cause there are other objects being created (i think) in the rest of this code. I really don't know anything about ASP so I'm not sure what this is all about. Any help would be appreciated,

Cheers