Here is a sample of sending an email with attachment:
This assumes that each record in your table has unique ID.
1.Create a query that contains the information you want to send
2.Open the query in design view and enter in the criteria section under your primary key field this: [Forms]![YourFormName]![YourUniqueFieldName]
3.Create a report based off your query.
4. Make sure the unique id is on your form, it can be hidden if wanted.
5.Add a command button to your form.
6. Select the command button in design view - go to the properties box slect the 'On Click' event.
7 In the 'On Click' event put this in the code window:
DoCmd.SendObject acSendReport, "NameofYourReport", "FormatYouWantForReport", "YourEmailAddress", , , "TitleforEmailMessage", "TextofEmailMessage", False
Now - which ever record you are currently viewing in on the form - when the user pushes the button - a report with that record's information will be sent to the e-mail address.