|
-
Mar 18th, 2001, 05:09 PM
#1
Thread Starter
Lively Member
creating ne users
what do i do in my success.asp for to call the values of the texbox fields off the newuser.asp to send an email to admin that includes username surname ect ect??
as my admin gets his email but not with the username value in it???
<%
dim username
username = Request.form("username")
set msg = Server.CreateObject("JMail.SMTPMail")
msg.ServerAddress = "192.168.80.10"
msg.Sender = "[email protected]"
msg.SenderName = "WASP"
msg.AddRecipient "[email protected]"
msg.Subject = "Online Appraisel New User"
msg.Body = "Welldone " & username & " You have been created as a new user"
msg.Execute
set msg = nothing
%>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|