def contact_message(contact)
@email = "#{contact.email_address}"
@recipients = 'zkwentz@gmail.com'
@from = @email
@subject = 'Contact Form Request'
@body['name'] = contact.name
@body['city'] = contact.city
@body['state'] = contact.state
@body['zip'] = contact.zip
@body['phone'] = contact.phone
@body['email_address'] = @email
@body['address'] = contact.address
@body['message'] = contact.message
end