My form has a lable which contains an email hyperlink address. When I click on the label, the default email program will open with the address and subject, and the user needs to add in whatever message before sending. The code for the hyperlinked label is as follows:
Private Sub lblEmail_Click()
lblEmail.HyperlinkAddress = “mailto:?subject=
End Sub
It works fine so far. Now I also want to add a pre-determined short message into the body of the email where the hyperlink is clicked.
Can I do that in Access?
PS: Perhaps the alternative is sending the message as an attachment. How can it be done?