Still doesn't work. No errors but page is not displayed
--- In [email protected], Mark E <[EMAIL PROTECTED]> wrote: > Are you getting any errors? > > Not sure if it matters, but try "Server." in front of your createobject: > > Set objMail = Server.CreateObject("CDONTS.NewMail") > > Mark > > > kejeckam <[EMAIL PROTECTED]> wrote: > Please am doing an email page for my app and I've tested the app by > uploading a page with the info below but IU can't get any results > even though the host documentation says it supports CDO and ASP. Do > they still need to do any server settings to make the mails go or am > I doing something wrong. please I need an urgent reply > Kene > > > > > <%@ Language=VBScript %> > <% Option Explicit %> > <% Response.Buffer = True %> > > > <html> > > <head> > <title> Test Response </title> > </head> > > <body> > <% > > Dim objMail > Set objMail = CreateObject("CDONTS.NewMail") > objMail.From= "[EMAIL PROTECTED]" > objMail.To= "[EMAIL PROTECTED]" > > objMail.Subject="Testing ASP mail" > objMail.Body= "ThankGod for his mercies" > objMail.Send > Set objMail=nothing > %> > </body> > > </html> > > > > > > --------------------------------- > Yahoo! Groups Links > > To visit your group on the web, go to: > http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ > > To unsubscribe from this group, send an email to: > [EMAIL PROTECTED] > > Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. > > > > [Non-text portions of this message have been removed] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
