"
mailbody= mailbody & "Order Number (N): | " & requestnum & " | TO BE COMPLETED BY THE CITY |
"
mailbody= mailbody & "Name: | " & trim(Request.Form("cust_name")) & " | Srvc(circle): E G W S R T |
"
mailbody= mailbody & "SSN: | " & trim(Request.Form("ssn")) & " | CSR: |
"
mailbody= mailbody & "Drivers License: | " & trim(Request.Form("d_license")) & " | Date Completed: |
"
mailbody= mailbody & "Birthday: | " & trim(Request.Form("birthday")) & " | New Acct#: |
"
mailbody= mailbody & "Email Address: | " & trim(Request.Form("emailaddr")) & " | Landlord#: |
"
mailbody= mailbody & "Phone Numbers: | " & trim(Request.Form("home_phone")) & " " & trim(Request.Form("business_phone")) & " | Customer#: |
"
mailbody= mailbody & "Employer Information: | " & trim(Request.Form("employer")) & " | Delinquency Risk %: |
"
mailbody= mailbody & "Moving From: | " & trim(Request.Form("out_address")) & " " & trim(Request.Form("out_unit")) & " " & trim(Request.Form("out_city")) & ", " & trim(Request.Form("out_province")) & " " & trim(Request.Form("out_postal")) & " | Deposit $: |
"
mailbody= mailbody & "Move Out Date: | " & trim(Request.Form("moveoutdate")) & " | Prior Acct#: |
"
mailbody= mailbody & "Moving To: | " & trim(Request.Form("in_address")) & " " & trim(Request.Form("in_unit")) & " " & trim(Request.Form("in_city")) & ", " & trim(Request.Form("in_province")) & " " & trim(Request.Form("in_postal")) & " | Prior Acct Bal: |
"
mailbody= mailbody & "Move In Date: | " & trim(Request.Form("moveindate")) & " | Prior Acct#: |
"
mailbody= mailbody & "Mailing Address: | " & trim(Request.Form("mail_address")) & " " & trim(Request.Form("mail_unit")) & " " & trim(Request.Form("mail_city")) & ", " & trim(Request.Form("mail_province")) & " " & trim(Request.Form("mail_postal")) & " | Prior Acct Bal: |
"
mailbody= mailbody & "Rent or Own: | " & Request.Form("rent_yn") & " " & Request.Form("landlord") & " | Category: R C |
"
mailbody= mailbody & "Comments: | Comments: |
"
mailbody= mailbody & "" & trim(Request.Form("T1")) & " | |
"
mailbody= mailbody & "" & trim(Request.Form("T2")) & " | |
"
mailbody= mailbody & "" & trim(Request.Form("T3")) & " | |
"
mailbody= mailbody & "" & trim(Request.Form("T4")) & " | |
"
mailbody= mailbody & "
"
mailbody= mailbody & "By submitting this application, Applicant acknowledges: 1. The above information is true |
"
mailbody= mailbody & "and correct to the best of my knowledge(City Code Section 20-1-11 states that it is unlawful |
"
mailbody= mailbody & "for any person to obtain utility service by deceitful means or artful practice which includes |
"
mailbody= mailbody & "providing false information during the application process); 2. Applicant will pay all |
"
mailbody= mailbody & "utility charges and fees for service at the above location, and past due utility amounts |
"
mailbody= mailbody & "shall be paid prior to obtaining new utility services; |
"
mailbody= mailbody & "3. Penalties may be charged for late payment and service will be discontinued for |
"
mailbody= mailbody & "failure to pay all charges by the due dateshown on monthly statements; 4. Residential |
"
mailbody= mailbody & "sanitation charges are mandatory within the City limits regardless of actual use of this |
"
mailbody= mailbody & "service except for vacant rental property for an approved Landlord; 5. The City may utilize |
"
mailbody= mailbody & "my social security number and other information to determine my credit score and verify |
"
mailbody= mailbody & "employment for the purposes of determining my deposit and collecting unpaid amounts. Should |
"
mailbody= mailbody & "I choose not to provide my social security number, I understand that I will be charged the |
"
mailbody= mailbody & "maximum deposit; 6. An unexpired government issued picture ID is |
"
mailbody= mailbody & "required for identification purposes; 7.A $30 connect fee and any required deposit will |
"
mailbody= mailbody & "be included on your first bill; 8. The City shall not be responsible for the transmission |
"
mailbody= mailbody & "or use of utility services beyond the meter; 9. There are no open water or gas outlets within the building.
|
"
mailbody= mailbody & "Please fax a copy of your lease or purchase agreement plus a picture ID to our customer |
"
mailbody= mailbody & "service office at 706-883-2041 or email this information to utilities@lagrangega.gov |
"
mailbody= mailbody & "or mail to Customer Service at 200 Ridley Ave, LaGrange, GA 30240. |
"
Set myMail = CreateObject("CDO.Message")
'myMail.From = Request.Form("emailaddr")
myMail.From = "OnlineRequest@lagrangega.gov"
myMail.To = "utilities@lagrangega.gov"
myMail.Cc = Request.Form("emailaddr")
myMail.Subject = "eCARe Movein Request " & requestnum
myMail.htmlBody = mailbody
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver") _
="lagrangega-org.fortimailcloud.com"
'Server port
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport") _
=25
myMail.Configuration.Fields.Update
myMail.Send
set myMail = nothing
DBObj.Close
%>