Email Hyperlink Issue

motherteresa

Board Regular
Joined
Nov 11, 2010
Messages
76
I have searched, but just can't get this figured out. Any help would be SO appreciated.

I have this code in a sheet. The code is activated by clicking on a button. It all looks great, but I want my email address to be a hyperlink. I've read several solutions, but can't seem to get it right.

Code:
Private Sub CommandButton1_Click()
    Dim OutApp As Object
    Dim OutMail As Object
     
    Set OutApp = CreateObject("Outlook.Application")
    OutApp.Session.Logon
    Set OutMail = OutApp.CreateItem(0)
     
    On Error Resume Next
    With OutMail
        .To = "someone@whatever.com"
        .cc = ""
        .BCC = ""
        .Subject = "Try Me " & Format(Date, "dd/mmm/yy")
        .HTMLBody = "NAME" & vbCrLf & vbCrLf & "Hope your are doing well. Athletic interviews are due and I'd like you to come in on (DAY), (MONTH) (DATE).  The session should take about an hour.  As the day gets closer, I will call and confirm our appointment." & vbCrLf & vbCrLf & "Please reply as soon as you are able to let me know if this will work for your schedule." & vbCrLf & vbCrLf & "Thank You," & vbCrLf & "Teresa Silverman" & vbCrLf & "Athletic Director - Heritage Academy." & vbCrLf & "motherteresa@bellsouth.net>" & vbCrLf & "555-666-7777"
        .Display 'or use .Send
    End With
    On Error GoTo 0
     
    Set OutMail = Nothing
    Set OutApp = Nothing
End Sub

Thank you for any suggestions!!:)
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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