Hi, in the below snippet of code I need help in revising the code so range ("G15"), which is a date can be changed to text. Currently when we enter the date in that field we do so as 052324 and it changes to appear as 5/23/24. But when the date moves to the outlook email it shows as 52324. I want it to appear as 5/23/24 if possible. Thanks for the help.
VBA Code:
With oMail
.SentOnBehalfOfName = "sales@rfbcorp.com"
.To = Worksheets("DETAIL FORM").Range("G3")
.cc = ""
.HTMLBody = "See attached order confirmation. Your order will be released for production. Please notify us immediately if any changes are needed." & "<br/>" & "<br/>" _
& "Estimated ship date: " & Sheets("FINALORDER").Range("G15") & "<br/>" & "<br/>" _
& "Thank You" & "<br/>" & "<br/>" _