<?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>DesignBash &#187; HTML Email</title>
	<atom:link href="http://www.designbash.com/tag/html-email/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designbash.com</link>
	<description>web magazine and more...</description>
	<lastBuildDate>Wed, 17 Mar 2010 20:57:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Textarea Style &#8211; Quick n&#8217; Easy</title>
		<link>http://www.designbash.com/tutorials/css-textarea-style-quick-n-easy/</link>
		<comments>http://www.designbash.com/tutorials/css-textarea-style-quick-n-easy/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 14:13:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML Email]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=79</guid>
		<description><![CDATA[I'm not sure why, but so many sites seem to ignore their horrible CSS textarea style. How many times have you used a textarea that had zero padding?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure why, but so many sites seem to ignore their <strong>horrible CSS textarea style</strong>. How many times have you used a textarea that had zero padding? or even worse, it used the default &#8220;Times New Roman&#8221; font because the designer was too lazy too fix it?</p>
<p><span id="more-79"></span></p>
<p>Well this article is going to be a quick example of a nice textarea styled with CSS. There is no reason why this should be hard to do, as it literally takes 2 minutes to put together.</p>
<p>Let&#8217;s get started. First we have our textarea:</p>
<pre class="brush:html">

<textarea id="commentBox"></textarea>
</pre>
<p>Just a couple things to note here&#8230; First off, try and make sure there are no extra spaces between the start of the textarea tag and the end. In my experiences having any space will sometimes cause the textarea to be pre-filled with spaces, which is both annoying and confusing when you&#8217;re trying to fill out a form. Second, you almost always want to give your textarea an id, you&#8217;ll need it to target with the label.</p>
<p>Next up some CSS styles:</p>
<pre class="brush:css">
#commentBox {
     display: block;
     width: 400px;
     height: 120px;
     padding: 8px;
     border: 1px solid #cccccc;
     line-height: 130%;
     font-size: 13px;
}
</pre>
<p>What we end up with is a nice standard textarea that can be customized to fit whatever theme you need. It should look like the example textarea below:</p>
<style type="text/css">
#commentBoxExample {
     width: 400px;
     height: 120px;
     display: block;
     padding: 8px;
     border: 1px solid #cccccc;
     line-height: 130%;
     font-size: 13px;
     margin: 0 auto;
} 
#textareaHolder {
     padding: 15px;
     background: #efefef;
     border: 1px solid #cccccc;
}
</style>
<div id="textareaHolder"><textarea id="commentBoxExample">This is just an example and only an example&#8230;</textarea></div>
<p>So thats it! Only 7-10 lines of CSS for a basic but nice looking textarea. From here it would be really easy to customize this with background-images, fancy borders, different colors, jQuery hover states, or whatever else you think would look nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/tutorials/css-textarea-style-quick-n-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Mail HTML Email</title>
		<link>http://www.designbash.com/html-email/how-to-mail-html-email/</link>
		<comments>http://www.designbash.com/html-email/how-to-mail-html-email/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 21:34:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Email]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=46</guid>
		<description><![CDATA[If you're anything like me, you may have wondered how to send HTML emails without using a fancy service like Campaign Monitor or Mail Chimp. The truth is, it's actually much easier than you probably think. There are just a few steps you need to follow.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re anything like me, you may have wondered how to <strong>mail HTML emails</strong> without using a fancy service like <a href="http://www.campaignmonitor.com/" target="_blank"><strong>Campaign Monitor</strong></a> or <a href="http://www.mailchimp.com/" target="_blank"><strong>Mail Chimp</strong></a>. The truth is, it&#8217;s actually much easier than you probably think. There are just a few steps you need to follow.</p>
<p><span id="more-46"></span></p>
<h3>Step 1 &#8211; Get Thunderbird</h3>
<p style="text-align: center;"><a href="http://www.mozillamessaging.com"><img class="aligncenter size-full wp-image-47" title="get-thunderbird-email" src="http://www.designbash.com/wp-content/uploads/2010/01/get-thunderbird.png" alt="get-thunderbird-email" width="405" height="214" /></a></p>
<p>For this example I&#8217;ll be using <a href="http://www.mozillamessaging.com" target="_blank"><strong>Thunderbird</strong></a>, a great open-source mail client put together by the same people who bring you <a href="http://www.mozilla.com/firefox/" target="_blank"><strong>Firefox</strong></a>. I&#8217;m sure you can use other mail clients to <strong>mail HTML email</strong>, but I really enjoy Thunderbird so that&#8217;s what I&#8217;ve decided to use. You&#8217;ll need to get everything setup before you can actually send any HTML email, but that&#8217;s really outside the scope of this quick walkthrough.</p>
<h3>Step 2 &#8211; Craft Your HTML Email</h3>
<p>The next step is to craft your HTML email. This is definitely the hardest part and I would highly recommend looking through tutorial before trying anything too fancy. <a href="http://articles.sitepoint.com/article/code-html-email-newsletters" target="_blank">Sitepoint has a nice little article</a> on the subject, or if you&#8217;re feeling lazy you can grab a pre-fab <a href="http://www.campaignmonitor.com/templates/">HTML email template from Campaign Monitor</a>.</p>
<h3>Step 3 &#8211; Upload Images to a Public Area</h3>
<p>If you&#8217;re using any images in your HTML email, <strong>you&#8217;ll need to find a place to host them onlin</strong>e. If you fail to do this, all your images will show up broken. Ideally you&#8217;ll want to use your own hosting, but if you need a quick fix you can probably use a service like <a href="http://imgur.com/" target="_blank"><strong>imgur</strong></a> to temporarily host them for you. Once your images are all online, make sure to change all the image paths in your HTML email. <strong>The image path needs to be absolute, which means you need to put in the full URL </strong>(<em>ie. http://www.yoursite.com/email-images/your-image.jpg</em>).</p>
<h3>Step 4 &#8211; Use Thunderbird to Mail the HTML Email</h3>
<p>Create a new message just like you normally would, but leave everything blank to start. From the top menu click <strong>Insert / HTML </strong>then paste in your HTML email. (<em>click the images to see screenshots</em>)</p>
<p><br class="spacer_" /></p>
<div id="attachment_48" class="wp-caption aligncenter" style="width: 265px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/create-new-message.jpg"><img class="size-medium wp-image-48" title="create-new-message" src="http://www.designbash.com/wp-content/uploads/2010/01/create-new-message-255x300.jpg" alt="create-new-email" width="255" height="300" /></a><p class="wp-caption-text">Create a Blank Message</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_49" class="wp-caption aligncenter" style="width: 310px"><a style="text-decoration: none;" href="http://www.designbash.com/wp-content/uploads/2010/01/click-insert-html.jpg"><img class="size-medium wp-image-49" title="click-insert-html" src="http://www.designbash.com/wp-content/uploads/2010/01/click-insert-html-300x132.jpg" alt="mail-html-email" width="300" height="132" /></a><p class="wp-caption-text">Click Insert / HTML</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_50" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/insert-html-email.jpg"><img class="size-medium wp-image-50" title="insert-html-email" src="http://www.designbash.com/wp-content/uploads/2010/01/insert-html-email-300x125.jpg" alt="insert-html-into-email-thunderbird" width="300" height="125" /></a><p class="wp-caption-text">Paste in Your HTML Email</p></div>
<p><br class="spacer_" /></p>
<h3>And thats it! Start sending your HTML emails!</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/html-email/how-to-mail-html-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
