<% formCompleted = false if request("action") = "makePayment" then 'body of email body = "" body = body & "" body = body & "" body = body & "" for x = 1 to request.Form.Count if request.Form.Key(x) <> "action" then body = body & "" end if next body = body & "
The following payment has just been received from rmfire.com.
 
 
" & request.Form.Key(x) & ":"& request.Form.Item(x) &"
" Set Mailer = Server.CreateObject("SMTPsvg.Mailer") Mailer.ContentType = "text/html" Mailer.RemoteHost = "127.0.0.1" Mailer.FromName = "Rural/Metro Fire Department Arizona" Mailer.FromAddress = "noreply@rmetro.com" 'where are we going to send the email to? emailTo = setEmail(lcase(trim(request("serviceCity")))) Mailer.AddRecipient "Customer Service", emailTo Mailer.Subject = "Payment process request for " & request("serviceCity") Mailer.BodyText = body if not Mailer.SendMail() then Response.Write "Failed to complete new service request - please try again." Response.End() else formCompleted = true end if end if function setEmail(theCity) emailGoesTo = "cindy.jones@rmetro.com" 'if no match is found if theCity = "apache junction" or _ theCity = "apache jct" or _ theCity = "avondale" or _ theCity = "buckeye" or _ theCity = "carefree" or _ theCity = "cashion" or _ theCity = "cave creek" or _ theCity = "chandler" or _ theCity = "chandler heights" or _ theCity = "chandler hgts" or _ theCity = "desert hills" or _ theCity = "el mirage" or _ theCity = "florence" or _ theCity = "gadsden" or _ theCity = "gilbert" or _ theCity = "glendale" or _ theCity = "goodyear" or _ theCity = "higley" or _ theCity = "litchfield park" or _ theCity = "martinez lake" or _ theCity = "mesa" or _ theCity = "morristown" or _ theCity = "new river" or _ theCity = "peoria" or _ theCity = "phoenix" or _ theCity = "queen creek" or _ theCity = "rio verde" or _ theCity = "san luis" or _ theCity = "san tan valley" or _ theCity = "scottsdale" or _ theCity = "somerton" or _ theCity = "sun city" or _ theCity = "sun city west" or _ theCity = "surprise" or _ theCity = "tempe" or _ theCity = "tolleson" or _ theCity = "waddell" or _ theCity = "wellton" or _ theCity = "wittmann" or _ theCity = "yuma" then emailGoesTo = "CustomerServiceArizona@rmetro.com" end if if theCity = "tucson" or _ theCity = "sahuarita" or _ theCity = "oro valley" then emailGoesTo = "CustomerServiceSouthernArizona@rmetro.com" end if setEmail = emailGoesTo end function %>

  <% if formCompleted then %> <% else %>

NetPay - Online Payment System

At Rural/Metro, we're constantly looking for new ways to provide the highest level of service to communities, and we're pleased to offer our newest service -- NetPay!

Now existing Rural/Metro customers can safely and conveniently maintain their fire service with an online bill payment, with 100% protection of personal information. If you have any questions regarding your account or online payment, please contact our customer service department in your area.

 

Just follow the steps below to begin processing your payment. You may wish to review Rural/Metro's Privacy Statement before beginning.

If you need to establish a Fire Service Agreement with Rural/Metro, please contact the customer service department
in your area.

Authorizing Your Payment
On your Rural/Metro Fire Service Renewal form locate your Contract Number and Invoice Number.
NO SIGN-UP IS REQUIRED!

Customer Service

For properties in Pima County, Arizona:
     520-297-3600 or 866-411-7633
     email CustomerServiceSouthernArizona@rmetro.com

For properties in all other counties in Arizona:
     800-645-9413
     email CustomerServiceArizona@rmetro.com

<% end if %>
To have a customer service representative process your payment, please enter your information in the areas below and click "Make Payment."  *(required fields)
Customer Information:
*Contract #
*Invoice #
Property Information:
*Service Address
*Service City
Service State
Service Zip
Billing Information:
*First Name
*Last Name
*Address
*City
*State
*Zip
Payment Information:
*Amount you wish to pay
*Credit Card Type
*Credit Card Number
*Credit Card Expiration (mm/yy)
Contact Information:
*Email Address - receipt will be e-mailed to this address
*Best Phone to be Reached - for questions regarding your payment we will call this number


 
<% if not formCompleted then %> <% end if %>