I have web application written in Java. It uses Spring and Freemarker to make emails from templates and Spring JavaMailSender to send them.
I send emails that contain time in their content. The problem is that server stores time in UTC+00 time zone and clients may have different time zone like for example UTC+03. For example in email content there is 20/07/2017 11:30 (UTC+00), but recipient expects 20/07/2017 14:30 (UTC+03).
My question is: Is it possible to show time in email content in client time zone without having information about his time zone on the server side? Is there for example some trick that tells email client to interpret given time in his timezone?