Email clickable link from Excel VBA to Outlook

brundag5

New Member
Joined
Jan 23, 2014
Messages
17
Hello,

Thanks for reading this.

I'm trying to email a clickable link with VBA to outlook. I have the below code which does everything I need but the link that is emailed is not clickable. I is emailed as a hyperlink and the path is correct (if I past the path into the address bar the file opens). I end up with a hyperlink that does nothing. Perhaps it is an Outlook problem, but I email other links all of the time. Is there a better way to create the link?

Thanks for your time.

Code:
Sub SendEmail()
    Dim OutApp As Object
    Dim OutMail As Object
    Dim strbody As String
    Dim FName As String
    Dim FPath As String
     
    Recip = [W2].Value & "; " & [W3].Value & "; " & [W4].Value
    FPath = "C:\10 Work Orders\"
    FName = Range("A3")

    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)
    strbody = "[URL="https://www.mrexcel.com/forum/&"]" & FPath & FName & ".xlsm" & "[/URL]"

    On Error Resume Next
    With OutMail
        .To = Recip
        .CC = ""
        .BCC = ""
        .Subject = "new MTC work order submitted"
        .HTMLBody = strbody
        .Send
    End With
    On Error GoTo 0

    Set OutMail = Nothing
    Set OutApp = Nothing
End Sub
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,223,246
Messages
6,170,996
Members
452,373
Latest member
TimReeks

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top