A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - General Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Automated mail creation & sending



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 14th 07, 09:41 AM posted to microsoft.public.outlook
RichardSchollar
external usenet poster
 
Posts: 2
Default Automated mail creation & sending

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  
Old February 14th 07, 12:15 PM posted to microsoft.public.outlook
RichardSchollar
external usenet poster
 
Posts: 2
Default Automated mail creation & sending

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 06:37 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.