vba - How do I send a non-http hyperlink in an email message generated by Excel macros? -


i using excel macros send email, content kept in cells. need send non-http link looks this

elodms:// followed id

i'm assuming outlook doesn't know form of link , doesn't present clickable link when email sent, when inserting email address.

is possible force outlook view hyperlink? , can done through vba excel macros?

this how have done emails in excel before.

email = "hello, <br><br>" & _                 "this something:" & _                    "<br><br> thank you." & _                    "<br><br><br> <a href='elodms://12345'>click here</a>"     outmail         .to = "you@me.com"         .cc = ""         .bcc = ""         .subject = "subject"         .htmlbody = email          .send     end 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -