save excel attachments sent by email

bonovox1

Board Regular
Joined
Aug 11, 2007
Messages
91
Hi, im trying to write a macro that will save files from a specific email address into a specific folder. I will be recieving files from 5 differnt mail addresses on a daily basis and i want to be avle to save them to a date stamped folder.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
yes but it's not much use...as they come in at differnt times each day and contain the exact same type of data. so i have no real way of distinguishing between the data i save down in the folder.
 
Upvote 0
Copy the function GetFromAddress into the module that contains your code. Then try:

Code:
FileName = "C:\Email Attachments\" & _
GetFromAddress(Item) & Item.Sender & Atmt.FileName
 
Upvote 0

Forum statistics

Threads
1,224,542
Messages
6,179,424
Members
452,914
Latest member
echoix

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