Emailing a field as a hyperlink

M

Mark

Here is my code, it works, but I am looking to make one tweak. strbody is
actually a field that is displayed in a form as a hyperlink. The idea is for
the link to show up formatted as a hyperlink in the body of the text. The
link shows up, but it is not a hyperlink. Any way to do this?? Thanks!!

Private Sub Command14_Click()
Dim strsubject As String
Dim strbody As String

strsubject = Me!Callsip
strbody = Me!Child10!image

DoCmd.SendObject acSendReport, "NI", acFormatRTF, "(e-mail address removed)", , ,
strsubject, strbody


End Sub
 

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

Top