Hi,
a sample email :
Hello,
I'm sending to you ....
www.google.com
then we select in Outlook and run vba code :
SelectMail = Outlook.ActiveExplorer.Selection.Item(1)
strEmail = SelectMail.body
If we display strEmail ( msgbox )
then we get :
Hello,
I'm sending to you ....
HYPERLINK"http://google.com"www.google.com
how to get rid of expression HYPERLINKhttp://google.com
I need only text message as string ( the same as we select email contents and copy - paste to notepad )
Thanks
a sample email :
Hello,
I'm sending to you ....
www.google.com
then we select in Outlook and run vba code :
SelectMail = Outlook.ActiveExplorer.Selection.Item(1)
strEmail = SelectMail.body
If we display strEmail ( msgbox )
then we get :
Hello,
I'm sending to you ....
HYPERLINK"http://google.com"www.google.com
how to get rid of expression HYPERLINKhttp://google.com
I need only text message as string ( the same as we select email contents and copy - paste to notepad )
Thanks