Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP mail component

Status
Not open for further replies.

shabir

IS-IT--Management
Jun 6, 2000
3
A2
Hi,

Can any one help me with the ASP code to pass the value from a HTML form to mail server.I am using a NT server.

Thanx in advance,
shabir
 
If you mean you want to send mail via SMTP then use
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = email
objCDO.From = sAdminEmail
objCDO.Subject = "*** inetCost Password! ***"
objCDO.Body = sBody
objCDO.Send
Set objCDO = Nothing
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top