S
Sid
How is the simplest way to have Access open my Outlook Express
and paste an email address from a control on my form?
I tried using "Mailto", but I'm not sure how to send the control's contents.
The DoCmd.SendObject example I tried:
----------------------------
Dim strEmail As String
Dim strSubject As String
Dim strText as String
strEmail = <youremailaddress.com>
strSubject = "Subject text"
strText = "Whatever text you want in the email message"
DoCmd.SendObject acSendNoObject, , , strEmail, , ,
strSubject, strText, True
and paste an email address from a control on my form?
I tried using "Mailto", but I'm not sure how to send the control's contents.
The DoCmd.SendObject example I tried:
----------------------------
Dim strEmail As String
Dim strSubject As String
Dim strText as String
strEmail = <youremailaddress.com>
strSubject = "Subject text"
strText = "Whatever text you want in the email message"
DoCmd.SendObject acSendNoObject, , , strEmail, , ,
strSubject, strText, True