View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default HELP with .HTMLBody: Display Hpyerlink in email body

See how I do it here

strbody = "<H3<BDear Customer</B</H3" & _
"Please visit this website to download the new version.<br" & _
"Let me know if you have problems.<br" & _
"<A HREF=""http://www.rondebruin.nl/""Ron's Excel Page</A" & _
"<br<br<BThank you</B"


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"sam" wrote in message ...
Hi All,

I want to display the file path as hyperlink in my email body, I tried using
.HTMLBody and usging "%20" where theres a space but then when i send the
email i see a "%20" in my email body. Here is what i have for outlook
.HTMLBody

strbody = "<H3<BInformation: </B</H3 <br" & _
" Name: " & Me.Name.Value & "<br" & _
"Email: " & Me.Email.Value & "<br" & _
"Date: " & Me.DatePreparedTextBox.Value & "<br" & _
"LP Path: " & "C:\My Documents\" & Me.FileNumber.Value &
"<br" & "<br" & _

ALSO, I am saving the file with a field name from the form(thats why
Me.FileNumber.value is the part of the path as the file is saved with this
name).
And that field name too has a space in between.
Such as "ABC 123"

SO the patch would look like: "C:\My Documents\ABC 123"
and I want to display this as a hyperlink, so the user can just click on the
link and open up the file.


Thanks in advance.