![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hello everyone
I create a report from a legacy system in csv format every day, and once it has been produced I need to attach it to an email and send this email out to one recipient (the same one every day). The subject line is also the same every day, and the report is saved down to my C drive. How can I automate the process? Not running the report, but picking it up from its specified location - preferably confirming first that the file date is today's date (the date is NOT incorporated within the file name) - and attaching it to an email to the recipient and with the standard header? I am conversant with Excel VBA but have never used Outlook VBA before. Any help appreciated. Best regards Richard Schollar |
Ads |
#2
|
|||
|
|||
![]()
I'm sure the following will make more competent coders cringe, but it
does what I need: Sub CreateAndSend() Dim fso, oFDT, myOlApp,myitem,myAttachments Set fso = CreateObject("Scripting.FileSystemObject") 'Set fso = New FileSystemObject Set oFDT = fso.GetFile("C:\MyFile.csv") If Format(oFDT.DateLastModified, "ddmmyyyy") Format(Date, "ddmmyyyy") Then MsgBox "MyFile.csv does not carry today's Date Stamp": Exit Sub End If Set myOlApp = CreateObject("Outlook.Application") Set myitem = myOlApp.CreateItem(olMailItem) Set myAttachments = myitem.Attachments myAttachments.Add "C:\AXAFIL.csv", _ olByValue, 1 myitem.To = " myitem.Subject = "My Subject Line" myitem.Display myitem.Send End Sub On 14 Feb, 09:41, "RichardSchollar" wrote: Hello everyone I create a report from a legacy system in csv format every day, and once it has been produced I need to attach it to an email and send this email out to one recipient (the same one every day). The subject line is also the same every day, and the report is saved down to my C drive. How can I automate the process? Not running the report, but picking it up from its specified location - preferably confirming first that the file date is today's date (the date is NOT incorporated within the file name) - and attaching it to an email to the recipient and with the standard header? I am conversant with Excel VBA but have never used Outlook VBA before. Any help appreciated. Best regards Richard Schollar |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
550 msg sending mail 2 Hot & MSN users, Help | Marge | Outlook - General Queries | 4 | July 26th 06 07:57 PM |
Automated Mail | Muthu | Outlook - General Queries | 1 | June 18th 06 04:59 AM |
Automated mail | Muthu | Outlook - Using Forms | 0 | June 17th 06 05:12 AM |
Opening & Sending a previously saved mail item | WhytheQ | Outlook and VBA | 4 | May 9th 06 11:27 AM |
Automate mail account creation? | Doug | Outlook - Installation | 2 | February 8th 06 06:03 PM |