Search results

  1. R

    changing FW: on forward

    I did it with the below code Sub RemoveExpression() Dim Insp As Inspector Dim subStr As String Dim oMail As MailItem Dim itmOld As MailItem, itmNew As MailItem Set Insp = Application.ActiveInspector Set oMail = Insp.CurrentItem lPosition = InStr(oMail.HTMLBody, "Subject:") + 7 +...
  2. R

    changing FW: on forward

    Hi Diane, I was able to get it work with the below code. But it seems to be messing up the formating. After running the below code all the Rich text content seems to be missing from the body. Sub RemoveExpression() Dim Insp As Inspector Dim obj As Object Dim subStr As String Dim oMail As...
  3. R

    changing FW: on forward

    Hi All, I am new to VBA so any help will be greatly appreciated . I have to forward a mail from specific subject but need to get rid of FW: from the subject along with the signature and old users subject, emails...etc. how do i do it ? Regards Roma
Back
Top