How can I delete all copies of a given companies logo graphic from all my emails at once?

Status
Not open for further replies.

ship69

Member
Outlook version
Outlook 2010 32 bit
Email Account
Exchange Server
Hello

Is there any way that I can delete all copies of an attached image form all my emails?

Background
Some (idiot) companies insist on attaching an image of their company logo on all their emails. This makes it extremely hard to see which of their emails contain genuine attachment and which just have their company logo on. I would like to delete all such logos at once. Is this possible?

Thanks

J
 
PS
e.g. All emails from one of my clients contains a graphic called "image001.png" and another called "image002.png". How can I delete all instances for a graphic with that name from all my Outlook emails?
[I wasn't allowed to edit my original message, above]
 
you have two choices - edit the html t remove it or convert the messages to plain text.

You can start with one of these macros as a base and

Then use something like
With obj
.htmlbody = replace(.htmlbody, "image001.png","")
.save
End With


or use the macro that deleted images and look for just the two png files

something like this, although it may need edited a bit (I did not test it and am writing it as I watch tv so I'm not responsible for errors. :))
Code:
 ' Loop through attachments until attachment count = 0.
 While lngAttachmentCount > 0
if left(8,myAttachments.Item(1).FileName) ="image000" then 
 myAttachments(1).Delete
 lngAttachmentCount = myAttachments.count
 Wend
 
Thanks but...

No, neither of your suggestions are acceptable.
A) Converting all my emails to plain text is not acceptable as I will lose formattting.
B) I am not interested in learning how to create and run macros. I just don't have time.

Is there no way to just locate all images called [whatever] and delete them.

Going fowards maybe I could destroy all images called [whatever] as they arrive, using a rule?
Come to think if it, is there any way to use Outlook Rules to delete all historic copies of image called [whatever]

J
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
D Delete Outlook emails from MS server Using Outlook 9
K How can I delete an e-mail from Outlook Using Outlook 1
D Delete selected text in outgoing email body Outlook VBA and Custom Forms 0
E Outlook 365 Save Selected Email Message as .msg File - oMail.Delete not working when SEARCH Outlook VBA and Custom Forms 0
G Automatically delete email when a condition is met Outlook VBA and Custom Forms 1
D Outlook 2021 Using vba code to delete all my spamfolders not only the default one. Outlook VBA and Custom Forms 0
M Shift Delete doesn't delete email from server Using Outlook 3
J Unable to delete folders in Outlook 2019 / Windows Using Outlook 0
Horsepower Cannot delete gmail in iPhone Outlook outbox Using Outlook 1
J Quick steps delete original email and move reply/sent email to folder Using Outlook 2
N How to add or delete items to Move dropdown Menu Using Outlook 0
G Automatically delete messages in the synchronization folder Outlook VBA and Custom Forms 3
O How to delete a forum post? Using Outlook 4
T Outlook 2010 Errore run-time -2147417851 (80010105) Metodo delete ContactItem non riuscito Outlook VBA and Custom Forms 0
C Outlook 2016 Unable to delete Gmail IMAP calendar Using Outlook 2
S Outlook 2016 dont delete inbox item Using Outlook 0
F Wishlist Outlook suddenly began synchronizing deleted items every time I delete a single email. Using Outlook 2
O Outlook 2010 Add delete button to the side of the message list Using Outlook 1
R Outlook 365 update sets delete from server flag Using Outlook 1
S Outlook 2016 A Shortcut to recall and delete and sent message. Using Outlook 1
T Outlook 2010 How to Delete “Orphaned” TO DO? ( Not on Exchange Server) Using Outlook 6
P How did hacker cause link to delete and archive containing email? Using Outlook 6
Z Outlook 365 delete reminder you can’t make change to contents of this-read only folder Using Outlook 4
J To delete the draft email Using Outlook 2
W Recurrence: delete older occurrences / change earliest start time Outlook VBA and Custom Forms 0
J Moved many emails to Outlook external folder, need to delete on Gmail server Using Outlook 14
A Attachments.Delete Outlook VBA and Custom Forms 3
R Help Revising VBA macro to delete email over different time span Outlook VBA and Custom Forms 0
R Expand VBA Permanent Delete Code Outlook VBA and Custom Forms 6
M Delete headers in Inline reply Outlook VBA and Custom Forms 5
N VBA to delete duplicates by message-id on common pst for 2 or more emails Outlook VBA and Custom Forms 0
9 Outlook 2016 How to save an Outlook attachment to a specific folder then delete the email it came from? Using Outlook 1
D after delete mail, open the next one Outlook VBA and Custom Forms 0
O Delete duplicate emails - subscription notifications Using Outlook 5
F Delete/create/reset Exchange mailbox on Outlook.com Using Outlook.com accounts in Outlook 3
L Email Read and Delete Outlook VBA and Custom Forms 4
H Delete Calendar Entries in Using Outlook 2
D Delete Emails from Senders in Shared Mailbox Outlook VBA and Custom Forms 1
R How to delete Facebook Contacts folder in Outlook 365 Using Outlook 7
R VBA Code to permanently delete selected email Outlook VBA and Custom Forms 10
JoeG Appointment Delete/Change Recurrence Outlook VBA and Custom Forms 0
C Outlook 2016 cannot delete, email showing in root Exchange Server Administration 5
C How to replace or delete first instance of sentence in mail body? Outlook VBA and Custom Forms 1
Z Can't delete IMAP folder Using Outlook 2
J Delete old emails Exchange Server Administration 1
undercover_smother Automatically Forward All Sent Mail and Delete After Send Outlook VBA and Custom Forms 10
T Delete Emails from search results Outlook VBA and Custom Forms 1
I Outlook 2013 How do I delete a Calendar? Using Outlook.com accounts in Outlook 1
N How to delete default folder "Contacts" (olFolderContacts) in a .pst file Using Outlook 8
O How to delete posts Using Outlook 1

Similar threads

Back
Top