Is it possible to format time in an email template...
# suitescript
k
Is it possible to format time in an email template?
k
Sorry for the late reply! I ended up on the same page after some googling. The following ended up working:
Copy code
<#if customrecord.custrecord_appointmenttime?has_content>
        <#assign apptTime = customrecord.custrecord_appointmenttime?time>
        <#assign apptTime = apptTime?string.short>
    <#else>
        <#assign apptTime = ''>
    </#if>