How to remove or delete subject prefixes in Outlook?
While you are replying or forwarding a letter, there are prefixes such as Re or FW in the front of the Subject as below screenshot shown in default. But sometimes, you want to remove these prefixes away, how can you solve it in Outlook?
remove all duplicate contacts from one or multiple contacts folders in outlook
|
In sometimes, we may repeatly add the same contacts, how can remove the duplicate contacts from one or multiple contacts folders? Kutools for Outlook's Duplicate Contacts function can quickly remove or merge duplicate contacts based on emails, full name or other criteria from one or more contacts folders . Click for 45 days free trial! |
![]() |
Kutools for Outlook: with dozens of handy Outlook add-ins, free to try with no limitation in 45 days. |
Remove subject prefixes with VBA
- Auto CC/BCC by rules when sending email; Auto Forward Multiple Emails by rules; Auto Reply without exchange server, and more automatic features...
- BCC Warning - show message when you try to reply all if your mail address is in the BCC list; Remind When Missing Attachments, and more remind features...
- Reply (All) With All Attachments in the mail conversation; Reply Many Emails at once; Auto Add Greeting when reply; Auto Add Date&Time into subject...
- Attachment Tools: Auto Detach, Compress All, Rename All, Auto Save All... Quick Report, Count Selected Mails, Remove Duplicate Mails and Contacts...
- More than 100 advanced features will solve most of your problems in Outlook 2010-2019 and 365. Full features 60-day free trial.
Remove subject prefixes with VBA
To remove subject prefixes away, you just can handle it manually except running a VBA code in Outlook.
1. Press Alt + F11 keys to enable the Microsoft Visual Basic for Applications window.
2. In the popping dialog, double click at the ThisOutlookSession in Project-Project1 pane and copy and paste below code into the blank script.
VBA:Remove subject prefixes
Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) 'UpdatebyExtendoffice20180326 RemoveREOrFW Item, "RE" RemoveREOrFW Item, "FW" End Sub Function RemoveREOrFW(Item As Object, Str As String) Dim xSubject As String If InStr(Item.Subject, Str) > 0 Then xSubject = Replace(Item.Subject, Str & ":", "", vbTextCompare) Item.Subject = Trim(xSubject) Item.Save End If End Function
3. Save the code and go back to reply or forward an email, the prefixes are still in the subject, but it will be removed after sending the email.
Kutools for Outlook - Brings 100 Advanced Features to Outlook, and Make Work Much Easier!
- Auto CC/BCC by rules when sending email; Auto Forward Multiple Emails by custom; Auto Reply without exchange server, and more automatic features...
- BCC Warning - show message when you try to reply all if your mail address is in the BCC list; Remind When Missing Attachments, and more remind features...
- Reply (All) With All Attachments in the mail conversation; Reply Many Emails in seconds; Auto Add Greeting when reply; Add Date into subject...
- Attachment Tools: Manage All Attachments in All Mails, Auto Detach, Compress All, Rename All, Save All... Quick Report, Count Selected Mails...
- Powerful Junk Emails by custom; Remove Duplicate Mails and Contacts... Enable you to do smarter, faster and better in Outlook.

