Ok this should do it for you:
Dim strText As String
Open "c:\TestFile.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, strText
Loop
Close #1
DoCmd.SendObject , , , "bukhix@mydomain.com", , , "OptionalSubject", _
strText, True
Just change the file path location and the email address and you should be all set.
[This message has been edited by BukHix (edited 12-14-2001).]