Deleting the file after sending as attachment

szczasiek

New Member
Joined
Jan 27, 2018
Messages
1
Hello all,

I have a macro that is creating a new email and sending attachment to Person A.

Person A then is supposed to open the attachment, click approval button. Approval button is an Activex Control, which puts “APPROVAL” word into specific cell and then send the file to Person B.

PROBLEM: attachment in email from Person A to Person B doesn’t have word APPROVED
ISSUE: sending file that is not saved, therefore word APPROVED is not there
SOLUTION I USED: I used ThisWorkbook.Save, to Save the file in Temp and then file is being sent to Person B.
PROBLEM WITH SOLUTION: file is saving in Documents folder and also I do not need this file. When I tried to delete the file I am getting an error that I cannot access the Path/File

QUESTION: How to Save a File in Specific location like “My Documents”, then send it (I have this part of code) and then delete the file? I do not want approvers to store the files.

Part of the code:
Code:
Range("D77").Value = "REVIEWED by " & Application.UserName
ThisWorkbook.Save
On Error Resume Next
With OutlookMail
End With
    On Error GoTo 0
    Set OutMail = Nothing
    Set OutApp = Nothing
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,223,893
Messages
6,175,241
Members
452,622
Latest member
Laura_PinksBTHFT

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