how do I link an email address in Access to open up Outlook Expre

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to link an email address typed into an Access form to Outlook or
Outlook Express. The idea is to click on the email address and Outlook to
open with the address in the address box.
 
In the click event on or focus event or wherever you want to launch the
E-Mail from try the following

DoCmd.SendObject acSendNoObject, , , [EMailAddress], , , "Subject", ,True
 
Where the parameter for text body?

Dennis said:
In the click event on or focus event or wherever you want to launch the
E-Mail from try the following

DoCmd.SendObject acSendNoObject, , , [EMailAddress], , , "Subject", ,True


zapbeta said:
I am trying to link an email address typed into an Access form to Outlook or
Outlook Express. The idea is to click on the email address and Outlook to
open with the address in the address box.
 
DoCmd.SendObject acSendNoObject, , , [EMailAddress], , , "Subject", "Body
Text Goes Here",True

XMan said:
Where the parameter for text body?

Dennis said:
In the click event on or focus event or wherever you want to launch the
E-Mail from try the following

DoCmd.SendObject acSendNoObject, , , [EMailAddress], , , "Subject", ,True


zapbeta said:
I am trying to link an email address typed into an Access form to Outlook or
Outlook Express. The idea is to click on the email address and Outlook to
open with the address in the address box.
 
DoCmd.SendObject acSendReport, "Report Name", acFormatSNP, "E-Mail Address",
, , "Subject", "Some Body Text", False
 
Back
Top