I have created a command to send a mail. See below. I want to attach a document to this mail though. Any ideas ?
DoCmd.SendObject , , , , , , "File Package to be added to VCDB", "Please add the following package to VCDB "
Printable View
I have created a command to send a mail. See below. I want to attach a document to this mail though. Any ideas ?
DoCmd.SendObject , , , , , , "File Package to be added to VCDB", "Please add the following package to VCDB "
Yeah, use automation and open the email client, create a meassage, and attach the file then send (optional to delete the sent message).
The only problem is getting the default users email client... Lotus notes, Outlook, Express. Outlook and express are pretty simple but Notes may present some difficulties...
Vince