Open Snipox00000001 opened 5 years ago
In app.js, line 195, there is "mailItem.Subject = "Status Report"
How can I add the current date so that the email subject would read "12/10/2018 Status Report"
this might work:
var today = new Date().toLocaleDateString(); mailitem.Subject = today + " Status Report";
"10/12/2018 Status Report"
In app.js, line 195, there is "mailItem.Subject = "Status Report"
How can I add the current date so that the email subject would read "12/10/2018 Status Report"