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

%>