Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I add a Like button is on the actual email that I send, and clicking it leads to a landing page on my website?

That means I want to add a Like button with HTML email newsletter that I send. And if anyone like it after that, I want to redirect them to my site.

share|improve this question
To indicate what? That they like the email? What would that do exactly? – David Schwartz Feb 2 '12 at 11:34
no, like to my fan page. and after that I want to redirect them into my landing page. is it possible..? – miuranga Feb 2 '12 at 11:42
Just link them to your fan page. How can they know whether they like the page or not if they can't see it? – David Schwartz Feb 2 '12 at 11:46
no, First i want to add like button of fan page to the email news letter.when they click it they want to show its publish in there time line and show other friend like it as normal like. so how can I do that..? – miuranga Feb 2 '12 at 11:50
2  
You can't like something you haven't seen. That's just not possible. Link to your fan page and put the like button on the fan page. – David Schwartz Feb 2 '12 at 11:55
show 1 more comment

4 Answers

up vote 3 down vote accepted

You can not do this - "like" buttons can only be attached to URL's. If you have a URL that somehow represents that specific email message then you might be able to get away with that.

Another thing to note is that not all email clients allow (by default) HTML content in the body of the email message - especially not iFrames...

What you might want to do is simply place a link to your website inside the email message and once the user lands on your website he/she can decide whether or not they want to "like" your URL.

share|improve this answer
anyway can i add only like button with email news letter ? – miuranga Feb 2 '12 at 11:23
The only possible way I could imagine doing this is by placing an iFrame version of the like button in the email. However (at least through gmail), the iFrame is not displayed. For other methods you'll need to implement the JavaScript SDK and you simply can not do that inside an email - it just doesn't work this way. – Lix Feb 2 '12 at 11:32
@miuranga, may I ask why you decided to reverse the "accept"? – Lix Feb 2 '12 at 12:34
2  
oh.!! sory I will do it bro – miuranga Feb 2 '12 at 12:50
hehe - no worries - I thought maybe you disagreed with my answer =] – Lix Feb 2 '12 at 12:51

You can create an html version of your email (if you have a website), and instead of the person seeing the content within the email, they are now on an html version of that site on your website. In your email it would be an image or similar that says [VIEW EMAIL] or something like that. That will link to the HTML version mentioned above. You can create the LIKE button on that page which can then post on their timeline. Hope that helps!

share|improve this answer

Add https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.YOURWEBSITEADDRESS.com%2F to your href. It will open a Facebook like/share page.

share|improve this answer

I tried it using Gmail. It will show you full codes and your like button URL will be a clickable link. So, it's just not possible to add a Facebook button. I tried both iframe and JavaScript versions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.