I cannot remember the combo to Auto enter the long date within the Subject line via Outlook VBA
Sorry for cluttering if this has been posted before, I couldn't find a thread with this.
The attached sheet has the basics, only needing the population of the Long Date
Sub SendMail()
Dim MyEmail As MailItem
Set MyEmail = Application.CreateItem(olMailItem)
With MyEmail
.To = "[email protected]"
.Importance = olImportanceNormal
.Subject = "Message - " ' ----------------- > Wishing to Auto Add todays Long Date
.Body = "@ "
.BodyFormat = olFormatHTML
.Display
End With
End Sub
Bookmarks