Format Mail Time Stamp to DateTime Format

Hi @Aditipatil,

Try this one,
your string value strValue and format is “dd/MM/yyyy” (based on your format give)
DateTime.ParseExact(strValue.ToString(),"dd/MM/yyyy",Globalization.CultureInfo.InvariantCulture).ToString("dd-MMM-yyyy")

Regards,
Arivu :slight_smile: