I currently have an email script I am using to populate a time, and it is populating 1 hour earlier than the value that is in SFDC. We are using the email script to pull in the time of the earliest (date-wise) item within the object. Our Salesforce Dev team has informed me that the times show in local time zones in SFDC, so I don't believe that should be an issue but am not sure. Any help is appreciated.
#set( $FlightLegsFromEarliest = $sorter.sort($Flight_Leg__cList,["Est_Departure_Time_EST__c:asc"]) )
#foreach($Flight_Leg__c in $FlightLegsFromEarliest )
#if(${Flight_Leg__c.Status__c}== "Booked")
#set( $matchedFlightLeg = $Flight_Leg__c )
#break
#end
#end
##OutPut Est_Departure_Time_EST__c
#if($matchedFlightLeg)
$matchedFlightLeg.Est_Departure_Time_EST__c##
#end
... View more