Contact us
For more information on GeNUIT's products/solutions, and partner program fill out the form below or contact us at 1-866-728-2345 (North America only) or 905-847-6539.
% On Error Resume Next strEditMode = Request("txtEditMode") 'Blank or "LOGIN-to validate login" if(strEditMode = "CONTACT")then strFirstName = Request("txtFirstName") strLastName = Request("txtLastName") strEmail = Request("txtEmail") strCompany = Request("txtCompany") strTelephone = Request("txtTelephone") strComments = Request("txtComments") 'Email to info@genuitcorp.com strEmailBody = "<< Please do not respond to this email it has been auto-generated by PROMYS >> " & VbCrLf & VbCrLf strEmailBody = strEmailBody & "PROMYS information request by:" & VbCrLf & VbCrLf strEmailBody = strEmailBody & "Contact: " & strFirstName & " " & strLastName & VbCrLf strEmailBody = strEmailBody & "Company: " & strCompany & VbCrLf strEmailBody = strEmailBody & "Email: " & strEmail & VbCrLf strEmailBody = strEmailBody & "Telephone: " & strTelephone & VbCrLf strEmailBody = strEmailBody & "Comments: " & strComments & VbCrLf & VbCrLf strEmailBody = strEmailBody & "Sent at:" & Now() Set objCDOMessage = Server.CreateObject("CDO.Message") With objCDOMessage .To = "info@genuitinc.com" .From = "info@genuitinc.com" .Subject = "PROMYS information request by" & " " & strFirstName & " " & strLastName .TextBody = strEmailBody .Send End With Set objCDOMessage = Nothing strMessage = "Message sent successfully!" end if %>
For more information on GeNUIT's products/solutions, and partner program fill out the form below or contact us at 1-866-728-2345 (North America only) or 905-847-6539.