I am sending an email campaign out to subscribers and I would like to incorporate a Facebook Like and a Tweet Button into my email. Since I cannot use javascript inside emails I was wondering the best way to do this. Here is what I have so far:
Tweet Button
<a title="Share Via Twitter" href="http://twitter.com/intent/tweet?
url=http://my-campaign-url&text=My%20Text%20-%20&via=My Name&">
<img src="/Images/network_icons/tweet-button-small.png"
style="border:0 none;" alt="Share Via Twitter">
Facebook Like
<a title="Like this on Facebook" href="http://www.facebook.com/plugins/like.
php?href=http://my-campaign-url.com&layout=standard&show_faces=
false&width=450&action=like&colorscheme=light&height=427%20">
<img src="/Images/network_icons/fblike-button-small.png" style="border:
0 none;" alt="Like This on Facebook">
Here are a few questions:
How do I pull the subject of the email to be posted along with the content?
Is it possible to pull only an image from the email and have that posted vs the entire email content?
Is there a better way to code the above buttons?
Thanks for the assistance.