isthisthingon
IS-IT--Management
I am new to this, so please be specific.
I have set up a secure portion of our website accessable by logins. I have setup a form for users to register a login for themselves. How would I set it up to automatically email the registration details of users once the asp form inserts the data into the database?
Thanks for all help .. .. I know someone has a simple solution to this need that I am having trouble with.
Also, my form checks for blank email addresses using the following code:
if strEmail = "" then
blnValid = False
strValid = strValid & "<table border=""0"" width=""302"" cellspacing=""0"" cellpadding=""0"" height=""22"">" & vbCrLf &_
"<tr>" & vbCrLf &_
"<td width=""300"" height=""22""><p align=""left""><font face=""Verdana"" size=""2"" color=""#000080""># Please Enter Your E-Mail ID.</p></td>" & vbCrLf &_
"</tr>" & vbCrLf &_
"</table>"
end if
How would I validate for an email address containing "@ourdomainname.org"
Thanks!!!!
I have set up a secure portion of our website accessable by logins. I have setup a form for users to register a login for themselves. How would I set it up to automatically email the registration details of users once the asp form inserts the data into the database?
Thanks for all help .. .. I know someone has a simple solution to this need that I am having trouble with.
Also, my form checks for blank email addresses using the following code:
if strEmail = "" then
blnValid = False
strValid = strValid & "<table border=""0"" width=""302"" cellspacing=""0"" cellpadding=""0"" height=""22"">" & vbCrLf &_
"<tr>" & vbCrLf &_
"<td width=""300"" height=""22""><p align=""left""><font face=""Verdana"" size=""2"" color=""#000080""># Please Enter Your E-Mail ID.</p></td>" & vbCrLf &_
"</tr>" & vbCrLf &_
"</table>"
end if
How would I validate for an email address containing "@ourdomainname.org"
Thanks!!!!