Sending emails...jFound the problem I was having getting it to work on NT
Code:
'this works
With objOutlookMsg
.To = Rst!email
.Subject = mySubject
.Body = "To All Parties Concerned:" & vbNewLine & vbNewLine
.Importance = olImportanceHigh
.Send
'***.what code adds an attachment in the form of a file.***
End With

What I require is the line of code or other to add an
attachment to the email. Anyone have this handy.