VBA: duplicate attachments

KirovHC

New Member
Joined
Jan 19, 2021
Messages
32
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I'm having a problem with attachments: on my computer it works perfectly but on others it keeps attachments in memory so, every time I send an emai,l it adds an attachment to the previous ones.
What could it be?
I also added "Attachment.Delete" before closing the code but it doesn't seem to have the desired effect

VBA Code:
'EMAIL
Set Sendrng = mail.Range("A1:B" & lr)
Sendrng.Select
    With Sendrng
        ActiveWorkbook.EnvelopeVisible = True
        With .Parent.MailEnvelope
            With .Item
                .To = mail.Range("E1").Value
                .CC = mail.Range("E2").Value
                '.BCC = ""
                .Subject = mail.Range("E3").Value
On Error Resume Next
                .Attachments.Add mail.Range("E4").Value
                .send
                End With
                End With
                End With
                
ActiveWorkbook.EnvelopeVisible = False
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
For now I found that

VBA Code:
Set attch = .Attachments
    While attch.Count > 0
        attch.Remove 1
    Wend

works fine. If anyone has a better solution
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top