Hyperlink in Email (1 Viewer)

Momma

Member
Local time
Tomorrow, 05:43
Joined
Jan 22, 2022
Messages
114
Hi there

I'm including a hyperlink in an email. How can I get it to show as a hyperlink once the email is generated?

Thank you in advance!

Code:
strBody = "Dear " & Forms!frmContactEmails!ContactList.Column(1, i) & "<br><br>" _
      & "Please follow the link below" & "<br><br>" _
      & "https://www.facebook.com/Redrobienapaws/reviews" _
                            
 With OutMail
    .To = Forms!frmContactEmails!ContactList.Column(2, i)
    .Subject = strSubject
    .HTMLBody = strBody
    .Display
End With
 

Edgar_

Active member
Local time
Today, 14:43
Joined
Jul 8, 2023
Messages
430
Code:
strBody = "Dear " & Forms!frmContactEmails!ContactList.Column(1, i) & "<br><br>" _
      & "Please follow the link below" & "<br><br>" _
      & "<a href='https://www.facebook.com/Redrobienapaws/reviews'>https://www.facebook.com/Redrobienapaws/reviews</a>" _

And maybe use the famous blue facebook icon, people may be more familiar with that.
 

Users who are viewing this thread

Top Bottom