I need to verify certain transactions on the server side based on some time policies set by the user. The problem I see is that all the policies are relative to user timezone. If I keep only GMT offset I would get problems if the user's timezone go to DST (Daylight Saving Time).
I need to get a timezone string on user side which I should be able to use to get current time when a new transaction arrives (e.g.: the user set a policy to approve transactions from 6pm to 9 pm and the user is in Texas. When a new transaction is created I need to verify whether it's between 6pm / 9pm in Texas).
Great thanks!