Creating a forward to a friend/colleague CTA button in email campaigns requires a workaround, as there's no built-in feature. Follow these simple steps to implement it.
Steps to achieve it:
- Open visual builder -> Add HTML block to the email campaign
- Create a mailto link:
You must create an anchor tag with a mailto link to open the user's email client window with a new email. The link can also predefine the subject and body text.
- Customize the Content:
- subject= defines the email subject line.
- body= includes the predefined email content, such as a greeting and a link.
- Embed in Your Email:
Add the link to your email design, labeling it clearly and invitingly, such as "Forward to a Friend" or "Share with a Colleague."
Example :
<p>Enjoyed this email? Share it with your friends!</p>
<ahref="mailto:?subject=Check%20out%20this%20amazing%20offer!&body=Hi%2C%0A%0AI%20just%20came%20across%20this%20amazing%20offer%20and%20thought%20of%20you.%20Here%27s%20the%20link%3A%20[Insert%20link]%0A%0AEnjoy%21">
Forward to a Friend
</a>
Output :