<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress Hacks &#187; Email This</title>
	<atom:link href="http://wphacks.com/tag/email-this/feed/" rel="self" type="application/rss+xml" />
	<link>http://wphacks.com</link>
	<description>WordPress Themes, Plugins, Hacks, Tutorials, and more!</description>
	<lastBuildDate>Sat, 19 May 2012 22:29:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Allow Readers to Recommend your Blog with WP-Email</title>
		<link>http://wphacks.com/allow-readers-recommend-blog-wp-email-wordpress-plugin/</link>
		<comments>http://wphacks.com/allow-readers-recommend-blog-wp-email-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 08:00:58 +0000</pubDate>
		<dc:creator>Josh Budde</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Email Button]]></category>
		<category><![CDATA[Email Plugin]]></category>
		<category><![CDATA[Email This]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1389</guid>
		<description><![CDATA[Do you want your Blog Readers to recommend or invite Friends to view your blog?  The Plugin, WP-Email created by Lester &#8216;GaMerZ&#8217; Chan allows you to allow your readers to invite people to view your blog. The plugin is very customizable, it lets you customize the email that gets send to the person the blog [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want your Blog Readers to recommend or invite Friends to view your blog?  The Plugin, WP-Email created by Lester &#8216;GaMerZ&#8217; Chan allows you to allow your readers to invite people to view your blog.</p>
<p>The plugin is very customizable, it lets you customize the email that gets send to the person the blog is being recommended to, along with being able to limit the number of words that gets sent from an article that is being recommended and more. You can find the other functions on the <a href="http://lesterchan.net/wordpress/readme/wp-email.html">WP-Email documentation</a>.</p>
<p>All emails that are sent, are logged into the WP-Admin interface and you view details right in the Dashboard area. It shows From, To, Date/Time Sent, IP/Host, Post Title (where the invite was sent from) and the Status of the Email.</p>
<p>If you are interested in downloading and installing this plugin, you can find it on the <a href="http://wordpress.org/extend/plugins/wp-email/" target="_self">WordPress Plugins Repository</a> and on <a href="http://lesterchan.net/wordpress/readme/wp-email.html">Lester Chan&#8217;s Website</a>.</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1389&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/allow-readers-recommend-blog-wp-email-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To: Adding an Email This Button to Your Blog</title>
		<link>http://wphacks.com/how-to-add-email-this-button-wordpress-blog/</link>
		<comments>http://wphacks.com/how-to-add-email-this-button-wordpress-blog/#comments</comments>
		<pubDate>Wed, 28 May 2008 08:00:04 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Email Button]]></category>
		<category><![CDATA[Email This]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Code]]></category>
		<category><![CDATA[WordPress Hacks]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=565</guid>
		<description><![CDATA[In the past we&#8217;ve talked about how to add a print button to your WordPress theme. Today I wanted to give you the javascript code you need to create an Email This button on your WordPress blog. Before getting to the code, I wanted to first say that this code is designed to allow readers [...]]]></description>
			<content:encoded><![CDATA[<p>In the past we&#8217;ve talked about <a href="http://wphacks.com/how-to-adding-a-print-this-button-to-your-theme/">how to add a print button to your WordPress theme</a>.  Today I wanted to give you the javascript code you need to create an Email This button on your WordPress blog.</p>
<p>Before getting to the code, I wanted to first say that this code is designed to allow readers to click on the button and have it open up their default email software and create a subject and link that point to the post the reader is currently visiting.   This code is not designed to allow readers to contact the blog author.</p>
<p>If you are wanting your readers to be able to contact you, I recommend you use one of the many great contact form WordPress plugins available.   You should never embed your email address into some HTML code because it will be picked up by spam bots.  Contact forms prevent spammers from finding your email address.  The other thing you can do is offer &#8220;EmailAddress AT EmailCompany DOT com&#8221; (which your email address information filled in) to avoid spammers.</p>
<p>Okay, so back to the Email button code.   Here is the javascript you will need:</p>
<p><code>&lt;script type="text/javascript"&gt;<br />
&lt;!-- Begin<br />
function isPPC() {<br />
if (navigator.appVersion.indexOf("PPC") != -1) return true;<br />
else return false;<br />
}<br />
if(isPPC()) {<br />
document.write('&lt;a class="contact" HREF=\"<a href="mailto:\?subject\=Take">mailto:\?subject\=Take</a> a look at this page I found, ' + document.title + '?body=You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page"&gt;Email to a Friend&lt;\/a&gt;');<br />
}<br />
else { document.write('&lt;a class="contact" HREF=\"<a href="mailto:\?body\=Take">mailto:\?body\=Take</a> a look at this page I found titled ' + document.title + '. You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page" rel="nofollow"&gt;Email This!&lt;\/a&gt;');<br />
}<br />
// End --&gt;<br />
&lt;/script&gt;</code></p>
<p>This will create an email where the reader can enter in someone&#8217;s email address and send them a link to your post/page.</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=287&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/how-to-add-email-this-button-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
	</channel>
</rss>

