%@ LANGUAGE="VBSCRIPT" %>
<% option explicit %>
<% Response.Buffer = True %>
<%
'Declaring Variables
Dim smtpserver,youremail,yourpassword,ContactUs_Name,ContactUs_Email
Dim ContactUs_Subject,ContactUs_Body,Action,IsError, ContactUs_Company, ContactUs_Phone
' Edit line 11 accordingly
smtpserver = "127.0.0.1"
youremail = "jim.ayers@ayerswelldrilling.com"
yourpassword = "" 'No need to add a password on Gate.com's servers
' Grabbing variables from the form post
ContactUs_Email = Request("ContactUs_Email")
ContactUs_Company = Request("ContactUs_Company")
ContactUs_Name = Request("ContactUs_Name")
ContactUs_Phone = Request("ContactUs_Phone")
ContactUs_Subject = Request("ContactUs_Subject")
ContactUs_Body = Request("ContactUs_Body")
Action = Request("Action")
' Used to check that the email entered is in a valid format
Function IsValidEmail(Email)
Dim ValidFlag,BadFlag,atCount,atLoop,SpecialFlag,UserName,DomainName,atChr,tAry1
ValidFlag = False
If (Email <> "") And (InStr(1, Email, "@") > 0) And (InStr(1, Email, ".") > 0) Then
atCount = 0
SpecialFlag = False
For atLoop = 1 To Len(Email)
atChr = Mid(Email, atLoop, 1)
If atChr = "@" Then atCount = atCount + 1
If (atChr >= Chr(32)) And (atChr <= Chr(44)) Then SpecialFlag = True
If (atChr = Chr(47)) Or (atChr = Chr(96)) Or (atChr >= Chr(123)) Then SpecialFlag = True
If (atChr >= Chr(58)) And (atChr <= Chr(63)) Then SpecialFlag = True
If (atChr >= Chr(91)) And (atChr <= Chr(94)) Then SpecialFlag = True
Next
If (atCount = 1) And (SpecialFlag = False) Then
BadFlag = False
tAry1 = Split(Email, "@")
UserName = tAry1(0)
DomainName = tAry1(1)
If (UserName = "") Or (DomainName = "") Then BadFlag = True
If Mid(DomainName, 1, 1) = "." then BadFlag = True
If Mid(DomainName, Len(DomainName), 1) = "." then BadFlag = True
ValidFlag = True
End If
End If
If BadFlag = True Then ValidFlag = False
IsValidEmail = ValidFlag
End Function
%>
Contact Ayers Welldrilling
<%
If Action = "SendEmail" Then
' Here we quickly check/validate the information entered
' These checks could easily be improved to look for more things
If IsValidEmail(ContactUs_Email) = "False" Then
IsError = "Yes"
Response.Write("You did not enter a valid email address.
")
End If
If ContactUs_Name = "" Then
IsError = "Yes"
Response.Write("You did not enter a Name.
")
End If
If ContactUs_Phone = "" Then
IsError = "Yes"
Response.Write("You did not enter a Phone.
")
End If
If ContactUs_Subject = "" Then
IsError = "Yes"
Response.Write("You did not enter a Subject.
")
End If
If ContactUs_Body = "" Then
IsError = "Yes"
Response.Write("You did not enter a Body.
")
End If
End If
' If there were no input errors and the action of the form is "SendEMail" we send the email off
If Action = "SendEmail" And IsError <> "Yes" Then
Dim strBody
' Here we create a nice looking html body for the email
strBody = strBody & "Contact Ayers Welldrilling Form" & vbCrlf & "Submitted at: " & Now() & vbCrLf & "
"
'strBody = strBody & "From http://" & Request.ServerVariables("HTTP_HOST") & vbCrLf & "
"
'strBody = strBody & "IP " & Request.ServerVariables("REMOTE_ADDR") & vbCrLf & "
"
strBody = strBody & "Company" & ": " & " " & Replace(ContactUs_Company,vbCr,"
") & "
"
strBody = strBody & "Phone" & ": " & " " & Replace(ContactUs_Phone,vbCr,"
") & "
"
strBody = strBody & "Name" & ": " & " " & Replace(ContactUs_Name,vbCr,"
") & "
"
strBody = strBody & "Email" & ": " & " " & Replace(ContactUs_Email,vbCr,"
") & "
"
strBody = strBody & "Subject" & ": " & " " & Replace(ContactUs_Subject,vbCr,"
") & "
"
strBody = strBody & "
" & Replace(ContactUs_Body,vbCr,"
") & "
"
strBody = strBody & ""
Dim ObjSendMail
Set ObjSendMail = CreateObject("CDO.Message")
'This section provides the configuration information for the remote SMTP server.
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Send the message using the network (SMTP over the network).
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtpserver
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 'Use SSL for the connection (True or False)
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic (clear-text) authentication
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") = youremail
ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = yourpassword
ObjSendMail.Configuration.Fields.Update
'End remote SMTP server configuration section==
ObjSendMail.To = youremail
ObjSendMail.Subject = ContactUs_Subject
ObjSendMail.From = ContactUs_Email
' we are sending a html email.. simply switch the comments around to send a text email instead
ObjSendMail.HTMLBody = strBody
'ObjSendMail.TextBody = strBody
ObjSendMail.Send
Set ObjSendMail = Nothing
' Change the success messages below to say or do whatever you like
' You could do a response, a redirect, or offer a hyperlink somewhere.. etc etc
%>
Message Subject: <% =Replace(ContactUs_Subject,vbCr," ") %>
Your message has been sent to Ayers Welldrilling - Thank You.
Please allow a couple days for response.
If your message is more urgent, call 440-256-3622
|
Home
<% Else %>
Information Request and Comments
We are interested in your comments, information requests, etc...
Please allow a couple days for response.
|
Home
<% End If %>