VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Sample ASP code for emailing registration information using CDONTS.

by Zahid (7 Submissions)
Category: Miscellaneous
Compatability: VB Script
Difficulty: Unknown Difficulty
Originally Published: Wed 5th April 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Sample ASP code for emailing registration information using CDONTS.

Rate Sample ASP code for emailing registration information using CDONTS.



<%option explicit%>

<%
dim objMail
dim Member
dim PassWord
Member=Session("ToMail")
PassWord=Session("Pwd")
set objMail=Createobject("CDONTS.Newmail")
objMail.From="..............."
objMail.To = Member
objMail.Subject="Your Id at ......"
objMail.Body="Thanks for registering with us. Your PassWord is=" & PassWord &" and Id=" & Member
objMail.Send 
set objMail=nothing
%>

Download this snippet    Add to My Saved Code

Sample ASP code for emailing registration information using CDONTS. Comments

No comments have been posted about Sample ASP code for emailing registration information using CDONTS.. Why not be the first to post a comment about Sample ASP code for emailing registration information using CDONTS..

Post your comment

Subject:
Message:
0/1000 characters