Can you format a Date field in an Email Template from Method Directive?

Ah, my apologies. Forgot the nullable date time was different.
AdjDate.Value.ToString("MM/dd/yyyy")

Edit: If you are worried that the date will ever be null, use this instead:
AdjDate == null? "[N/A]": AdjDate.Value.ToString("MM/dd/yyyy")

2 Likes