e-mail hyperlink

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hello,
I'm trying to assign a field as an e-mail hyperlink, but can't seem to make
it work. When I assign it as a hyperlink in the Properties, it treats it as
a web page link. Can anyone tell me how to do this?

Thanks,
DR
 
You could format the control and the field to which it is bound as text,
then use SendObject for the e-mail. The contents of the text box would be
the e-mail address. Help has more about SendObject, but it would go
something like this (maybe in a command button's Click event):

Dim strTo as String
strTo = Me.YourTextBox
DoCmd.SendObject , , , strTo

You can also add cc, bcc, and message body, and you can specify other
options such as whether the mail is to be previewed before being sent.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top