Hey,
Below is a slightly more advanced email code than you want but you should be able to figure out the necessary bits, If you need any more help just let me know...
Dim RespEmail As String
'Connect to Contact Table
Dim CnnDB As ADODB.Connection
Dim RstContact As ADODB.Recordset
Set CnnDB = Application.CurrentProject.Connection
Set RstContact = New ADODB.Recordset
'Open Recordset
RstContact.Open Source:="Contact", ActiveConnection:=CnnDB, CursorType:=adOpenForwardOnly, LockType:=adLockPessimistic
'Load Email Addresses
Dim StrEmailAddressSend As String
Dim strEmailAddress As String
Dim ErrResponse As String
Dim olMailItem
'Store HyperLink
Dim HypLink As String
HypLink = "file:///" & "C:\WINDOWS\Desktop\Budget%20Sales%20Vs%20Actual%20Sales" & "%20-%20" & strDate & ".doc"
On Error GoTo ErrHandler:
'Would user like to email contacts to confirm forecast completion
RespEmail = MsgBox("Would You Like To Inform Your Contacts That The Report Is Complete?", vbYesNo, "Email Request"
'If user says yes to email...
If RespEmail = vbYes Then
'Email all contacts neccesary
Dim myOlApp, myItem, myAttachments
Dim fs As Object
'While Not End Of File (sends to all contacts)
Do Until RstContact.EOF = True
'The variable links to relevant Field
strEmailAddress = strEmailAddress & RstContact.Fields("EmailAddress"

& "; "
'move record to next pointer
RstContact.MoveNext
Loop
StrEmailAddressSend = Left$(strEmailAddress, Len(strEmailAddress) - 2)
'creates instance of outlook
Set myOlApp = CreateObject("Outlook.Application"

'Creates new email
Set myItem = myOlApp.CreateItem(olMailItem)
'Declares possible attachment transfer
Set myAttachments = myItem.Attachments
'Body text
myItem.Body = vbCrLf & "The New Budget Sales Vs Actual Sales Report Is Complete - " & vbCrLf & vbCrLf & HypLink & vbCrLf & vbCrLf & vbCrLf & "Thanks"
'Subject text
myItem.Subject = "Budget Sales Vs Actual Sales Report Complete"
'Declare email Address
myItem.To = StrEmailAddressSend
'Below line could send document with email If required.
'myAttachments.Add "C:\WINDOWS\Desktop\Document.Doc", olByValue, 200, "Give It a Heading"
myItem.Display
End If
Exit Sub
ErrHandler:
MsgBox Err.Number & " : " & Err.Description
'DoCmd.Close
Exit Sub
ErrExit:
DoCmd.Close
hope this helps
Sam
"You couldn't fool your mother on the foolingest day of your life if you had an electrified fooling machine." - Homer