Send email from within Active Server Pages on an NT server.
Send email from within Active Server Pages on an NT server.
Rate Send email from within Active Server Pages on an NT server.
(3(3 Vote))
'Use Collaboration Data Objects (CDONTS)
'Note: This requires SMTP to be installed on server which comes with the
' Windows NT option pack.
<% set objMail=Server.CreateObject("CDONTS.NewMail")
objMail.To="[email protected]"
objMail.From="[email protected]"
objMail.Subject="Place the subject here"
objMail.Body="Place body text here"
objMail.Send
set objMail=Nothing %>
Send email from within Active Server Pages on an NT server. Comments
No comments yet — be the first to post one!
Post a Comment