C
|
copper21 11/11/2024 |
Rudy, Just change the format via php. I don't know what your field name is, but just replace it in the below code. $newdate = date("m/d/Y", strtotime($values['YOURDATEFILED'])); Where you currently have your $values['YOURDATEFILED'] in the email code, replace it with $newdate. |
R
|
Rudy Lambrechts author 11/11/2024 |
Hey copper21, thanks, I'm really a beginner, sorry. But where do I put the line: $subject="NIEUW SLOT BIJKOMENDE LESUREN INGEBRACHT DOOR KLANT"; $msg.= " "."\r\n"; |
C
|
copper21 11/11/2024 |
Try This: $newdate = date("m/d/Y", strtotime($values['Datum'])); $subject="NIEUW SLOT BIJKOMENDE LESUREN INGEBRACHT DOOR KLANT"; $msg.= " "."\r\n"; |
R
|
Rudy Lambrechts author 11/11/2024 |
Thank you very much! |