sure.. here you go, and yea i am using 97.
Private Sub CmdSend_Click()
Dim appOut As Outlook.Application
Dim EMailOut As Outlook.MailItem
Dim MthYr As String
Set appOut = CreateObject("Outlook.Application"

Set EMailOut = appOut.CreateItem(olMailItem)
MthYr = Format(txtDate, "mmmm - yyyy"
With EMailOut
.To = "Jared Taylor"
.CC = "Makensey Murdock"
.Subject = "Waved Fees Report for " & MthYr
.Body = "The Waved Fees Report for " & MthYr & " has been updated." & vbNewLine & _
"Please click on the link below to view." & vbNewLine & vbNewLine & _
"file://X:\assetmgt\WavedFees.xls" & vbNewLine & vbNewLine & _
"If you have any questions or comments please feel free to contact Reporting by email or phone (57134)" _
& vbNewLine & "Thank You"
.ReadReceiptRequested = False
.Display
End With
End Sub