I have tried a few things and have had limited success. I think that I have the proper code to get it to work, I am just not sure where or how to use it correctly. Any help would be appreciated.
Here is the code I am using.
<input name="Submit" type="submit" class="date" onclick="MM_validateForm('
LastNametx
t','','R',
'FirstName
txt','','R
','Orgtxt'
,'','R','E
mailAddtxt
','','NisE
mail');ret
urn document.MM_returnValue" value="Submit" />
This is the function that I have been trying to integrate into my buttons onclick property. I have tried it on a seperate form and it will send the email. I just need to make them work together.
<%
Dim ObjMail
Set ObjMail =CreateObject("CDO.Message
")
ObjMail.To = "People to contatct: email address"
ObjMail.From = "email address"
ObjMail.Subject = "New Readfile distro request."
ObjMail.TextBody = "A new person has requested to be put on the readfile distro list. Check the database for more info"
ObjMail.Send
Set ObjMail = Nothing
%>