View Single Post
 
Old 01-30-2023, 06:53 AM
JamesMWood JamesMWood is offline Windows 10 Office 2021
Novice
 
Join Date: May 2022
Posts: 25
JamesMWood is on a distinguished road
Default

Quote:
Originally Posted by gmayor View Post
Normally signature images are in the format "image001.jpg" which the line
Code:
If Not sName Like "image*.jpg" Then
should omit. If your images are in a different format then you can use a similar statement to omit those, or if your attachments are in a particular format e.g. *.docx or *.xlsx then you could change the line to (say)
Code:
If sName Like "*.docx" Or sName Like "*.xlsx" Then
or whatever fits your requirements to process just those attachment formats.
Ahhh I understand, I'll give that a shot. Thanks very much, you are really generous with your time and knowledge, it's appreciated.
Reply With Quote