Can someone help with this code?

Can someone help with this code?

I'm trying to setup a function to email certain people based on the zip code entered into a form and I'm getting an error with the following code. It's telling me there's an error at line number 1, which is the whole zip code or statements.

if ( (input.Zip_Code  ==  "92807")  ||  (input.Zip_Code  ==  "92808")  ||  (input.Zip_Code  ==  "92823") ||  (input.Zip_Code  ==  "92870")  ||  (input.Zip_Code  ==  "92886")  ||  (input.Zip_Code  ==  "92887") )
{
sendmail
[
from:zoho.adminuserid
subject:"New Free Estimate Request"
message:"First Name: " + input.First_Name + "<div><br></div>Last Name: " + input.Last_Name + "<div><br></div>Email: " + input.Email + "<div><br></div>Phone: " + input.Phone + "<div><br></div>Street Address: " + input.Street_Address + "<div><br></div>City: " + input.City + "<div><br></div>Zip Code: " + input.Zip_Code + "<div><br></div>Preferred Method of Contact: " + input.Preferred_Method_of_Contact + "<div><br></div>Service Needed: " + input.Service_Needed<div><br></div>Comments/Questions: " + input.Comments_Questions
]
}