How do I preserve the hyperlinks when sending a word document to email, not as an attachment but so it merges into the body of an email? I have used the code below, but the hyperlinks in my word document become plain text and the links are lost. I think it only needs a line or two more in the code but I cannot figure it out. Can anyone help me please.
Thanks in advance.
With ActiveDocument.MailMerge
ActiveDocument.SaveAs FileName:=fName
Options.SendMailAttach = False
ActiveDocument.SendMail
End With