Need to display conditional message based on system date, and time  (applicable time zone), else alternate message.
Example:
	
							
						
					Example:
Code:
	
	%IF((s.dyn_tm_wday LT 3) OR (s.dyn_tm_wday GT 6))%
  %IF((s.dyn_tm LT 15) OR (s.dyn_tm GT 24))%
        
    Ships today if ordered before 3:00 PM ET!
%ELSE%
Ships Next Business Day.
%IFEND%

Comment