Hi hsarro,
I have been using such macro for some time now. It works really cool with office 2010 don't know how it will run on 2007. One more thing it is attaching only one specific file with the given path,
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItemFromTemplate("here should be the path to your template.oft")
myItem.SentOnBehalfOfName = "I use this because I need to send it on behalf of somebody"
myItem.Display
Set myAttachments = myItem.Attachments
myAttachments.Add "path to your attachment"
This will give you some hints and maybe some other guys can advise on how to add the automatically generated pdfs,
Cheers
Bookmarks