Use a recordset to go through each of the records in turn and use the docmd.sendobject command to send the email.
The code would be something like this:
Private sub sendmail()
dim db as database, rs as recordset
set db = currentDB
set rs = db.openrecordset("myTableName", dbopendynaset)
rs.movefirst
do until rs.noMatch
DoCmd.SendObject acSendReport, "reportname", , rs!emailaddress, , , "Report Attached", "This is the text of the message", 0
rs.movenext
loop
end sub
where emailaddress is the name of the field in your table and Report Attached is the subject line of the email
The code may not be exactly right as I have worked from memeory, but it won't be far off.
HTH
Rick