Hi everyone,
I am trying to set our company email's subject each time we send an email. I am using this VBA code:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If (Left(Trim(Item.Subject), 11)) <> "Company name " Then
Item.Subject = "Company name " +...