How to insert a Facebook button like a button in an HTML newsletter?

I would like my readers to love my fan page while reading my newsletter. How to insert a standard number of iFrame buttons at the beginning of my letter?

+4
source share
3 answers

The standard iframe cannot be used in email campaigns. But u can fake it a bit using a like / share image from Facebook and am on a shared resource.

<a href='http://www.facebook.com/share.php?u=http://domain.com'> <img src='http://domain.com/like.png' alt='Like my site' /> </a> 
+1
source

You can add this link:

http://www.facebook.com/plugins/like.php?href=http://domain.com

However, not a beautiful landing page. It might be better to link your page to the Like button as an IFRAME.

+1
source

So you want to know how to add the “Facebook Like Button” to your email template. Ever since MailChimp promised to add functionality to our system, we have seen a buzz when people wondered how they do it. This article is a quick and dirty DIY Like Likettons manual built into email templates. Thus, no matter who your ESP is, you can embed the Like button in your email design.

It’s good to be honest, it’s really not that difficult, but, contrary to what you might have hoped, this is not completely seamless, and there is no way to do this. It includes a 2 click process.

The easiest way and most likely for most users is to use the following code.

- Code -

  <a href="http://www.facebook.com/plugins/like.php? href=http://www.facebook.com/pages/Email-Expert/130177676994892?ref%3Dts&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80 target="> <img title="Facebook Like Button" src="http://emailexpert.org/dontexist/likebutton.jpg" alt="" /> </a> 

- end -

Instructions

  • Change the URL to the page you like

  • Change the img location and upload an image with a similar image.

-2
source

All Articles