function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
swapna muthiyaluswapna muthiyalu 

i have custom date field , which stores datetime, i have used the field in visualforce email template in the format mm/dd/yyyy. so in email output the date converts to

Raj VakatiRaj Vakati
Can you explain what you are trying to accomplish here?


Here are the some of the date format conversions 
 
<apex:outputText value="{0, date, MMMM d','  yyyy}">
    <apex:param value="{!a.CreatedDate}" />
</apex:outputText>



<apex:outputText value=" {0,date,EEE MMM d, yyyy}">
    <apex:param value="{!a.CreatedDate}"/>
</apex:outputText>

 
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_outputText.htm