<?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; Outsourcing</title>
	<atom:link href="http://highedwebtech.com/category/outsourcing/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>4 Ways I&#039;d Make Wufoo Even More Awesome</title>
		<link>http://highedwebtech.com/2009/11/04/4-ways-id-make-wufoo-even-more-awesome/</link>
		<comments>http://highedwebtech.com/2009/11/04/4-ways-id-make-wufoo-even-more-awesome/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 14:00:53 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Outsourcing]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web App]]></category>
		<category><![CDATA[FormBuilder]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[Wufoo]]></category>

		<guid isPermaLink="false">http://highedwebtech.com/?p=900</guid>
		<description><![CDATA[We&#8217;ve been rolling out Wufoo forms across campus as our form creation and management tool of choice. It&#8217;s much more robust than the FormBuilder platform we built back in 2005, which is important, as I find myself with less and &#8230; <a href="http://highedwebtech.com/2009/11/04/4-ways-id-make-wufoo-even-more-awesome/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://t1.gstatic.com/images?q=tbn:K7eNTf2n4J66wM:http://www.appvita.com/wp-content/uploads/2009/02/ss-wufoo.jpeg" style="float:right;padding:5px;" />We&#8217;ve been rolling out <a href="http://wufoo.com">Wufoo</a> forms across campus as our form creation and management tool of choice. It&#8217;s much more robust than the <a href="http://highedwebtech.com/?s=formbuilder&#038;x=0&#038;y=0">FormBuilder</a> platform we built back in 2005, which is important, as I find myself with less and less time to spend supporting legacy web apps.</p>
<p>Wufoo is very full featured, with a robust API, a myriad of reporting options an several embedding options. We&#8217;ve been using it quite a bit as part of recruitment communications to customize and personalize forms as well as emails back to a user when they complete a form, which is really handy.</p>
<p>When we&#8217;ve had a support question or issue, it&#8217;s been answered and addressed quickly, which is nice.</p>
<p>So I&#8217;m 100% down with Wufoo, but I find myself wanting a few things that would take it to the next level.</p>
<p><strong>1. Let me bring my own storage</strong></p>
<p>At the level we&#8217;re at (the carpe diem plan at $69 a month), giving us only 3GB of storage is pretty silly. That amount of storage costs less than a dollar at any of the cloud storage services. Please, Wufoo, let me connect easily with my Amazon S3 account, where I could store as many files as possible and worry about the cost myself. I can think of a few forms where we&#8217;re asking people to upload a hi-res photo, and if a few hundred people fill out that form at a time, we could potentially get close to the limit. This should be a trivial fix.</p>
<p><strong>2. Pagination</strong></p>
<p>For surveys and other longer forms, it&#8217;d be really swell to break a form up across several pages. We have some applications and surveys that are so long I fear users see how long they have to scroll until they reach the end and they give up and go away. But a break in there would be nice.</p>
<p><strong>3. Conditional Questions</strong></p>
<p>The ability to ask a follow-up question only if a user selected a certain option in a checkbox or radio field would be nice. We&#8217;re getting this question quite a bit from people on campus.</p>
<p><strong>4. A level between &#8220;Carpe Diem&#8221; and &#8220;Ad Infinitum&#8221;</strong></p>
<p>It feels like there really should be one more level between their Carpe Diem plan (20 users, 3GB, 15,000 entries a month, $69.95/mo) and their Ad Infinitium plan (60 users, 10GB, 100,000 entries, $199.95/mo). We need about 40 users to cover everyone across campus. It&#8217;d be nice if there was a $99 or $129 plan where I could get 40 users, 6GB and 50,000 entries.</p>
<p>Wufoo, keep on keeping on. We&#8217;re huge fans of your service and so are our campus users.</p>
<p><b>Update from Wufoo:</b>:</p>
<p><a href="http://media.highedwebtech.com/wp-content/uploads/2009/11/Screen-shot-2009-11-04-at-10.29.30-AM.png"><img src="http://media.highedwebtech.com/wp-content/uploads/2009/11/Screen-shot-2009-11-04-at-10.29.30-AM.png" alt="Screen shot 2009-11-04 at 10.29.30 AM" title="Screen shot 2009-11-04 at 10.29.30 AM" width="467" height="274" class="aligncenter size-full wp-image-909" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://highedwebtech.com/2009/11/04/4-ways-id-make-wufoo-even-more-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick thought or two about email outsourcing</title>
		<link>http://highedwebtech.com/2008/08/07/a-quick-thought-or-two-about-email-outsourcing/</link>
		<comments>http://highedwebtech.com/2008/08/07/a-quick-thought-or-two-about-email-outsourcing/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 02:12:41 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Outsourcing]]></category>
		<category><![CDATA[Barracuda Networks]]></category>
		<category><![CDATA[college outsourced email]]></category>
		<category><![CDATA[email services]]></category>
		<category><![CDATA[email solutions]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[IHE]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[terrible webmail solution]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[web mail solutions]]></category>

		<guid isPermaLink="false">http://highedwebtech.com/?p=114</guid>
		<description><![CDATA[I enjoyed Karine&#8217;s article in University Business magazine about schools that are outsourcing email services to Microsoft and Google. I&#8217;d love for my institution to outsource our email to Gmail. From a systems management and infrastructure standpoint, it would really &#8230; <a href="http://highedwebtech.com/2008/08/07/a-quick-thought-or-two-about-email-outsourcing/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://flickr.com/photos/25627623@N00/2116296365" title="Gmail 512px - See description for download"><img src="http://farm3.static.flickr.com/2248/2116296365_53c43503c8_m.jpg" style="text-align:center;" /></a></center></p>
<p>I enjoyed <a href="http://universitybusiness.com/viewarticle.aspx?articleid=1111">Karine&#8217;s article</a> in University Business magazine about schools that are outsourcing email services to Microsoft and Google. I&#8217;d love for my institution to outsource our email to Gmail. From a systems management and infrastructure standpoint, it would really free up not only server time and bandwidth, but also staff time in having to maintain, keep up and grow email solutions.</p>
<p>After reading the article, I have a few thoughts to throw out there about outsourced email.</p>
<p>At my institution, we have a terrible webmail solution at the moment and I think these outsourced solutions offer a much more usable interface and feature set then many web mail solutions, including some open-source products.</p>
<p>Secondly, since you can connect to Gmail through POP or IMAP, conceivably the switch to an outsourced provider would be transparent for many of your on-campus users, such as faculty, staff and administration. They could continue to use the email client of their choice and access Gmail and it&#8217;s storage space and spam filtering. They could continue on business as usual and not have to learn an entire new interface if they didn&#8217;t want to.</p>
<p><img src="http://tbn0.google.com/images?q=tbn:OpwLRG8rIs99PM:http://www.ubergizmo.com/photos/2008/1/gmail-final.jpg" style="float:right;padding:5px;" />Third: one other thing to think about outsourcing email is the mobile strategy part. Yes, Gmail can be accessed by web browser, POP and IMAP but Gmail also has specialized clients and access for Blackberrys, Palms, and iPhones. This would mean that IT departments wouldn&#8217;t have to run BES or some other setup if they didn&#8217;t want to, and connecting the phones to the user&#8217;s existing Gmail account would be much easier then it sometimes currently is. I can imagine this would be of great relief to IT staff in many schools.</p>
<p>In the article, Karine mentions that schools will have to think about the bandwidth usage. She says:</p>
<blockquote><p>Moving thousands of e-mail accounts from a local network to the internet will also have some impact on bandwidth usage&#8211;especially if students start to use heavily the other collaboration features also offered for documents, photos, events, and more. The resulting higher demand might not be a showstopper, depending on the institution, but it will definitely need to be factored into the equation.</p></blockquote>
<p>Actually, it <strong>might</strong> be a wash in the end. Why? The answer could be spam.</p>
<p>Barracuda Networks released a <a href="http://www.barracudanetworks.com/ns/news_and_events/index.php?nid=232">report</a> at the end of last year that said 95% of all email sent in 2007 was spam. That unending barrage of bits eats up a large part of the bandwidth at any company or IHE (not to mention processing cycles), and by moving that to someone else&#8217;s pipe, the load may be reduced to the point that it might not have as strong an impact as expected.</p>
<p>I think this is just the tip of the iceberg when it comes to colleges outsourcing services. I was talking with <a href="http://collegewebeditor.com/blog/">Karine</a> and <a href="http://www.markgr.com/">Mark Greenfield</a> at EduWeb about this and Mark mentioned that the university datacenter in 20 years may be very different but I think you&#8217;ll see major changes in just five years, especially as cloud technologies mature. Today it&#8217;s email and web sites, but soon it will be backups, your CRM solution, ERP, BI and a bunch of other services.</p>
<p>Could the university data center of the future look like <a href="http://www.co-locationcages.com/images/Cervalis-Empty.jpg">this</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://highedwebtech.com/2008/08/07/a-quick-thought-or-two-about-email-outsourcing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

