Sending "TO:" information to outlook

E

Eglaz

I've tried looking throught various sources and am now
confused.

I would like to send a field in my table to the TO: line
in outlook.

Where would I even begin?
 
P

Paulb9

I have this attached to a command button next to the e-mail address on my
form for the OnClick event:

Private Sub Command21_Click()
Dim strMail As String
strMail = "#MailTo:" & Me.EMail2 & "#"
Application.FollowHyperlink HyperlinkPart(strMail, acAddress)
End Sub
 
Top