Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<#setting time_zone="America/New_York">
Time: ${response.currentDate?string("MM/dd/yyyy hh:mm a zzz")}.

I need the timezone to be displayed as 'EST'. But currently, when i run the application and the email gets generated from the template above, it is displaying as 'EDT'.

Can you please let me know what needs to be done to show as 'EST'? The current timezone (on the system where I am testing) is Indian Standard Time

Thanks!

share|improve this question
Why would the time zone display as EST? It's not currently EST in New York - it's EDT, Eastern Daylight Time. If it said EST, it would be lying. – Jon Skeet Jun 1 '10 at 10:19
You are correct, my question's got answered. Thanks a lot! Refer: timeanddate.com/library/abbreviations/timezones/na/edt.html – imdhmd Jun 1 '10 at 10:41

2 Answers

try <#setting time_zone="US/Eastern">

share|improve this answer
Welcome to Stack Overflow! Please read the comments and the answers before posting. In this case, you can see the question has already been solved: one of the answers has a green check beside them. However, if you can add important information, another answer is welcome. – Giulio Muscarello Nov 25 '12 at 9:41
up vote 0 down vote accepted

The behavior is expected at this point of year. Refer: http://www.timeanddate.com/library/abbreviations/timezones/na/edt.html

(thanks to the above comment by Jon)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.