Are you going to send the same email to a number of recipients in a recordset? If so, you can build your email subject, body and recipients from expressions in a query.
Using VB to program Access to create emails for you in Outlook itself.
I'm using this code to produce one email for all members of Recordset "T_TRAINING_EMAIL_DATA"
I append to the recordset from a query which writes my email text from an expression.
The circulation list is held in an invisible text box "Forms![Confirm]![txtCircList]
" this code gathers the recipient list
Dim db As Database, rs As Recordset, strCircList As String
Dim lngCount As Long
Dim strMessage As String
Dim strDelSup As String
strMessage = "You are about to create an email for "
Set db = CurrentDb
Set rs = db.OpenRecordset("T_TRAINING_EMAIL_DATA"
With rs
.MoveFirst
Do While Not .EOF
strCircList = strCircList & rs.Fields("To"

.Value & ";"
.MoveNext
Loop
Me.txtCircList = strCircList
End With
'This code runs the email function
Dim objOutlook As Outlook.Application
Dim db As Database
Dim tb As Recordset
Dim lngCount As Long
Dim RetVal
Dim strCircList As String
' Initialize Outlook objects
Set objOutlook = New Outlook.Application
Set objNameSpace = objOutlook.GetNamespace("MAPI"

Set objDraftFolder = objNameSpace.GetDefaultFolder(olFolderDrafts)
' Get pointer to default "Drafts" Folder
Set objMailItems = objDraftFolder.Items
' Get pointer to the Items Collection
Set db = CurrentDb
Set tb = db.OpenRecordset("T_TRAINING_EMAIL_DATA", dbOpenDynaset)
While Not tb.EOF
Set objMailItem = objMailItems.Add(olMailItem) ' Add new mail into"Drafts" Folder
With objMailItem
tb.MoveLast
.To = Forms![Confirm]![txtCircList]
.CC = tb.Fields("Cc"

.Value
.Subject = tb.Fields("Subject"

.Value
.Body = tb.Fields("BodyText"

.Value & tb.Fields("AdditionalText"

.Value
.Save
' Save new mail in "Drafts" Folder
End With
tb.MoveNext
Wend
db.Close
' Free memory
Set objMailItems = Nothing
Set objDraftFolder = Nothing
Set objNameSpace = Nothing
Set objOutlook = Nothing
DoCmd.Hourglass False
You will need to change this to suit your application and set a reference to MS Outlook Object Library
HTH
Paul