Hi,
I’ve done a lot of research (but clearly not enough) and a lot of formatting attempts to get a Day of Week, or Week Day format for a DateTime field. After an insert from a form, I have the event “OnAfterInsert” fire out an email with several bits of data. It’s all working, and I have the date formatted like I want, but I also want to include the Week Day - Like “Monday”.
Here’s the line snippet that formats the date currently:
$mail_message = $mail_message.'Incident Date: ’ . sc_date_conv({IncidentDate},“db_format”,“mm/dd/yyyy”) . ‘<br><br>’;
For today, it would show Incident Date: 12/16/2013
How do I have it show: Monday, 12/16/2013
I’ve tried SO many different things and I either get an error, or the field comes across blank in the email.
Thanks in advance!
Mark.