Hi guys im able to send emails in asp by the following code
Code:
Dim fname,emailto
fname=request.form("fname")
email=request.form("email")
Set NewMailObj=Server.CreateObject("CDONTS.NewMail")
NewMailObj.From = "test@test.com"
NewMailObj.To = request.form("emailto")
NewMailObj.Subject = "test"
NewMailObj.Body = "First Name: " & fname
NewMailObj.BodyFormat = 0
NewMailObj.MailFormat = 0
NewMailObj.Send
'Close the email object and free up resources
Set NewMailObj = nothing
I was able to send emails without mentioning smptp and anything else for that matter, but im not able to use that if im writing in aspx,
so how can i send email in aspx....please any help will be appreciated