Yes, this is possible. You would save the word document
using the document object of the documents collection and
then use the following code (making sure you have a
refence to outlook in your access database):
Public Sub SendDOCFile()
Dim objOutlook As Outlook.Application
Dim objOutlookMsg As Outlook.MailItem
Dim objOutlookRecip As Outlook.Recipient
Dim objOutlookAttach As Outlook.Attachment
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
With objOutlookMsg
Set objOutlookRecip = .Recipients.Add
("(e-mail address removed)")
objOutlookRecip.Type = olTo
.Subject = "Important Information"
.Importance = olImportanceHigh
.HTMLBody = "Hello"
Set objOutlookAttach = .Attachments.Add("c:\word.doc")
.Send
End With
exitsub:
Set objOutlookMsg = Nothing
Set objOutlook = Nothing
Set objOutlookAttach = Nothing
Exit Sub
End Sub