attach hyperlink to email created in access using VB

B

bawjaws

I am trying to attach a hyperlink to an email but can only manage it as
a file, that when opened is opening from my temp internet folder and is
completly blank. The attachment is
not following the link. Can any body help. here is the code i am using

With MailOutLook
.To = survemail
.Subject = emailsub
.HTMLBody = emailbody
.Attachments.Add "C:\file.htm", olByValue, 1

MsgBox ("You need to press 'yes' on the next
message to send")
.Send
End With

Thx in advance
 
Top