<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>email is NOT dead</title>
	<atom:link href="http://emailisnotdead.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://emailisnotdead.wordpress.com</link>
	<description>the views of an email marketer.</description>
	<lastBuildDate>Thu, 03 Dec 2009 16:02:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='emailisnotdead.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>email is NOT dead</title>
		<link>http://emailisnotdead.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://emailisnotdead.wordpress.com/osd.xml" title="email is NOT dead" />
	<atom:link rel='hub' href='http://emailisnotdead.wordpress.com/?pushpress=hub'/>
		<item>
		<title>&#8220;my name is not john&#8221;, or how to solve an email personalisation problem</title>
		<link>http://emailisnotdead.wordpress.com/2009/12/03/on-email-personalisation/</link>
		<comments>http://emailisnotdead.wordpress.com/2009/12/03/on-email-personalisation/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 16:00:52 +0000</pubDate>
		<dc:creator>emailisnotdead</dc:creator>
				<category><![CDATA[email tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[first name]]></category>
		<category><![CDATA[personalisation]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://emailisnotdead.wordpress.com/?p=14</guid>
		<description><![CDATA[What to do when you realise that some of your subscribers are called "jOHN".<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emailisnotdead.wordpress.com&amp;blog=10771471&amp;post=14&amp;subd=emailisnotdead&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 310px"><a href="http://arttattler.com/designmomaacquisitions.html"><img title="hello, my name is" src="http://arttattler.com/images/NorthAmerica/NewYork/MoMA/Design%20Collection/KidrobotHello.jpg" alt="hello, my name is" width="300" height="433" /></a><p class="wp-caption-text">image source: designmomaacquisitions</p></div>
<p>We get hundreds of email replies to our newsletter. The great majority of them are automated out-of-office replies, but we also get unsubscribe emails, address change emails, information request emails. And, emails that criticise us for our bad grammar.</p>
<p>Well:</p>
<p>a) we check our emails for spelling and grammar to death (and I will be the first to say that I can be pedantic about such things, and would rather die before sending out an email with typos), and</p>
<p>b) like most companies who employ email personalisation, we can only go on what the user gives us. It&#8217;s the old &#8220;garbage in, garbage out&#8221; idea.</p>
<p>There was an email from someone saying that their name was not &#8220;john, but &#8220;John&#8221;. I say: &#8220;that&#8217;s fine, but you gave us john&#8221; &#8211; our records show that the name that was given at signup was &#8220;john&#8221;. Unfortunately, we cannot always depend on users to give us grammatically correct first names. Luckily, if you can get to the code, there is a quickfire solution.</p>
<p>The way to go is to use a bit of inline CSS and, more specifically, by using <span style="font-family:Courier New;">text-transform</span>. The value to assign to that property is <span style="font-family:Courier New;">capitalize</span>:</p>
<p style="background-color:#eee;color:#c00;font-family:Courier New;">Welcome &lt;b style=&#8221;text-transform:capitalize;&#8221;&gt;[first name]&lt;/b&gt;!</p>
<p>(By the way, we add the style inside the <span style="font-family:Courier New;">&lt;b&gt;</span> tag: generally unorthodox, but we ourselves want the first name to be bolded, plus it works and is valid under the HTML 4.01 doctype. And remember to add a fallback!)</p>
<p>This handy snippet changes the initial letter of a string &#8211; in this case, the first name &#8211; to an uppercase one. Therefore, &#8220;john&#8221; changes to &#8220;John&#8221;. If it were uppercase already, then it will remain unchanged, so those who entered &#8220;John&#8221; will be fine. All other characters remain unchanged too, so if the first name was originally JOHN or jOHN, then the CSS would turn it into JOHN or JOHN &#8211; both of which are better than &#8220;john&#8221;. I&#8217;ve tested it, and have so far seen it to work in the BFWC*, Thunderbird, but not Outlook 2007 (despite what <a href="http://www.campaignmonitor.com/css/" target="_blank">Campaign Monitor say</a>). It&#8217;s therefore not 100% effective, but at least it will work for the majority of subscribers. Again, the caveat is that you can get to the code to make the edit. If not, get someone who has access to do it for you!</p>
<p>You could also somehow update the records in your database via some backend function, but this is harder to do. There are a number of email delivery systems that can do it on the fly during sending. I cannot vouch for your own system, and whether it can do said update automatically, so you&#8217;ll have to see for yourself. Either way, it may probably involving tweaking some settings: when system changes are involved, things can become a little bit scary. Plus, you might not have access to do such things.</p>
<p>It&#8217;s always important to bear in mind that a user&#8217;s impression of your brand can be made up by whether you get things right or not, especially when personal information is concerned. We cannot tell the subscriber that they&#8217;ve submitted their first name gramatically incorrectly either: some people couldn&#8217;t care less, and their reaction might be less than savoury. But by getting things correct anyway, their first impression of you will be positive. Remain grammatically incorrect and your subscriber might think less of you, even if it wasn&#8217;t your fault in the first place.</p>
<p>And what worser place to be grammatically incorrect than the first name.</p>
<p><em>* the BFWC = Big Four Webmail Clients. Or, specifically, GMail, Windows Live/Hotmail, AOL, Yahoo! Mail. I&#8217;ll be using this acronym frequently.</em></p>
<br />Posted in email tips Tagged: css, email, first name, personalisation, tips <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emailisnotdead.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emailisnotdead.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/emailisnotdead.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/emailisnotdead.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emailisnotdead.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emailisnotdead.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emailisnotdead.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emailisnotdead.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emailisnotdead.wordpress.com&amp;blog=10771471&amp;post=14&amp;subd=emailisnotdead&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://emailisnotdead.wordpress.com/2009/12/03/on-email-personalisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a75b90469b949bffe058684da305d4f3?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">emailisnotdead</media:title>
		</media:content>

		<media:content url="http://arttattler.com/images/NorthAmerica/NewYork/MoMA/Design%20Collection/KidrobotHello.jpg" medium="image">
			<media:title type="html">hello, my name is</media:title>
		</media:content>
	</item>
	</channel>
</rss>
