<?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>HighEdWebTech &#187; email</title>
	<atom:link href="http://highedwebtech.com/category/email/feed/" rel="self" type="application/rss+xml" />
	<link>http://highedwebtech.com</link>
	<description>Higher Ed Web Development</description>
	<lastBuildDate>Sat, 12 May 2012 17:53:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>SendGrid + WordPress = Happy Web Developer</title>
		<link>http://highedwebtech.com/2012/02/15/sendgrid-transactional-email/</link>
		<comments>http://highedwebtech.com/2012/02/15/sendgrid-transactional-email/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 17:03:20 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Outsourcing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[SendGrid]]></category>
		<category><![CDATA[transactional email]]></category>
		<category><![CDATA[transactional emails]]></category>

		<guid isPermaLink="false">http://highedwebtech.com/?p=1979</guid>
		<description><![CDATA[SendGrid integrates nicely into WordPress to ensure that transactional email is sent quickly, easily, and reaches its correct destination.]]></description>
			<content:encoded><![CDATA[<p><img alt="SendGrid Logo" src="http://media.marketwire.com/attachments/201111/44612_SendGridLogo1.jpg" title="SendGrid Logo" class="alignright" width="294" height="88" />Over the past 18 months, we&#8217;ve been rolling out WordPress to our campus users. The process has been going really well, but we found ourselves struggling in one particular area: transactional email to users.</p>
<p>These types of emails would include account setups, password resets, etc. Since we host our WordPress installation off-campus, somewhere in the tubes between there and our mail system here the mails were being eaten, quite possibly by a large, scary email-eating koala bear. In reality, it was probably an overzealous filter somewhere on our campus end that couldn&#8217;t guarantee that emails coming from our Rackspace box to campus really were legit and really were from a University account. </p>
<p>This made creating user accounts very labor intensive. Instead of just emailing login details, password reset requests and more directly to the user, we found ourselves creating an account for a person and immediately resetting their password, and then giving them the login details. Same went for password changes, they were never getting the transactional email to reset their passwords, so they were calling us. Not efficient.</p>
<p>Enter <a href="http://sendgrid.com/">SendGrid</a>. They are one of a few providers of email service, but unlike MailChimp or Constant Contact, they aren&#8217;t about the marketing and list management end of emails. They are about providing a delivery gateway to ensure that emails reach their intended destinations with a high degree of reliability. </p>
<p>After setting up an account at SendGrid (look for the free plan at the bottom of <a href="http://sendgrid.com/pricing.html">this page</a> to try it out. You get 200 emails per day and we&#8217;ve never come close to reaching that), SendGrid&#8217;s documentation directed us to a page about <a href="http://docs.sendgrid.com/documentation/get-started/integrate/examples/wordpress/">integrating SendGrid with WordPress</a>. </p>
<p>Using the <a href="http://wordpress.org/extend/plugins/wp-mail-smtp/">WP Mail SMTP plugin</a>, we are able to now avoid using the default <code>wp_mail()</code> and PHP mail commands from our server and instead we have our transactional email sent via SendGrid. To keep the admin panel from showing up and potentially confusing users, even admin users, the plugin allows you to put some details in your <code>wp-config.php</code> file. That code looks like this:</p>
<pre class="brush: php; title: ; notranslate">
define('WPMS_ON', true);
define('WPMS_MAIL_FROM', 'webmaster@gallifrey.edu');
define('WPMS_MAIL_FROM_NAME', 'Gallifrey University CMS');
define('WPMS_MAILER', 'smtp');
define('WPMS_SET_RETURN_PATH', 'false');
define('WPMS_SMTP_HOST', 'smtp.sendgrid.net');
define('WPMS_SMTP_PORT', 587); //
define('WPMS_SSL', '');
define('WPMS_SMTP_AUTH', true);
define('WPMS_SMTP_USER', 'YOURACCOUNTNAME');
define('WPMS_SMTP_PASS', 'YourAccountPasword');
</pre>
<p>And what do you know, they&#8217;re getting through. Our support calls and requests have dropped, and we can focus more of our limited resources on developing great sites and content with our campus partners. Win-win for everyone. </p>
<p>SendGrid isn&#8217;t just for these types of emails &#8211; it does much more as you can see in this video:</p>
<p><iframe src="http://player.vimeo.com/video/23283604?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p>As you dig more into their system, you&#8217;ll see they offer email handling, reports and all sorts of other analytics &#8211; they don&#8217;t just handle transactional email.</p>
<p>So, SendGrid is and will be a part of any web projects for us (and me outside of John Carroll) going forward. It&#8217;s just one more thing I won&#8217;t have to worry about.</p>
<p>And that, my friends, is a good thing. </p>
]]></content:encoded>
			<wfw:commentRss>http://highedwebtech.com/2012/02/15/sendgrid-transactional-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How not to do an unsubscribe</title>
		<link>http://highedwebtech.com/2009/02/24/how-not-to-do-an-unsubscribe/</link>
		<comments>http://highedwebtech.com/2009/02/24/how-not-to-do-an-unsubscribe/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 21:24:48 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[can-spam]]></category>
		<category><![CDATA[Junior Bacon]]></category>
		<category><![CDATA[unsubscribe]]></category>
		<category><![CDATA[Wendy's]]></category>
		<category><![CDATA[Wendy's chilli]]></category>

		<guid isPermaLink="false">http://highedwebtech.com/?p=517</guid>
		<description><![CDATA[Unsubscribing from an email list should, in theory, be a very simple task. I click a link and boom, I&#8217;m unsubscribed. Lately, I&#8217;ve noticed a few sites handle unsubs in a way that really irks me. Back in the day, &#8230; <a href="http://highedwebtech.com/2009/02/24/how-not-to-do-an-unsubscribe/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/89544908@N00/328789168" title="Canadian burger"><img src="http://farm1.static.flickr.com/131/328789168_2a8d260599_t.jpg" style="float:right;padding:5px;" /></a>Unsubscribing from an email list should, in theory, be a very simple task. I click a link and <a href="http://www.youtube.com/watch?v=r8L39UwOS-Y">boom</a>, I&#8217;m unsubscribed.</p>
<p>Lately, I&#8217;ve noticed a few sites handle unsubs in a way that really irks me. Back in the day, I signed up for some email thing at Wendy&#8217;s. The reason why escapes me at the moment, but they only send me things occasionly. As part of my push to rid my inbox of unnecessary stuff (been reading <a href="http://www.amazon.com/gp/product/1401309704?ie=UTF8&#038;tag=arsenicnet&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1401309704">Power of Less</a>), I decided that I no longer wanted to get emails from Wendy&#8217;s. I enjoy your salads, but don&#8217;t want your emails. At the bottom of the email, was an unsubscribe link. Here &#8217;tis:</p>
<p><a href="http://highedwebtech.com.s67666.gridserver.com/wp-content/uploads/2009/02/picture-11.png"><img src="http://highedwebtech.com/wp-content/uploads/2009/02/picture-11-300x38.png" alt="picture-11" title="picture-11" width="300" height="38" class="aligncenter size-medium wp-image-519" /></a></p>
<p>I clicked on the link, and got taken to a web page. For most emails I receive, that one click is enough to get me off the list. Sometimes, my email address is shown and I can choose what types of communications I want to receive or which lists I want to be removed from. Wendy&#8217;s does none of that. They force me to manually enter my email address in <strong>twice</strong>.  As always, click for a larger version.</p>
<p><a href="http://highedwebtech.com.s67666.gridserver.com/wp-content/uploads/2009/02/picture-21.png"><img src="http://highedwebtech.com/wp-content/uploads/2009/02/picture-21-300x154.png" alt="picture-21" title="picture-21" width="300" height="154" class="aligncenter size-medium wp-image-522" /></a></p>
<p>On one hand, it&#8217;s probably a good marketing move. When I saw that, I didn&#8217;t want to take the time to complete the form and thus I would remain on their list. Then I was annoyed enough to take screenshots and write a blog post.</p>
<p>What can higher ed learn from this? Sometimes people, be they prospective students, current students or alumni, want to be taken off an email list. We need to make it as easy as possible for them to do so. Sure, it stinks we can&#8217;t communicate with them any longer via email, but making the unsubscribe process simple and easy will hopefully allow them to leave with a positive feeling and, who knows, maybe come back and subscribe again.</p>
]]></content:encoded>
			<wfw:commentRss>http://highedwebtech.com/2009/02/24/how-not-to-do-an-unsubscribe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

