<?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>Brontoversity &#187; HTML</title>
	<atom:link href="http://brontoversity.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://brontoversity.com</link>
	<description>Product Education for Bronto's Email Marketing Application</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:57:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bulletproof buttons &#8211; now easier than ever</title>
		<link>http://brontoversity.com/2010/06/29/bulletproof-buttons-now-easier-than-ever/</link>
		<comments>http://brontoversity.com/2010/06/29/bulletproof-buttons-now-easier-than-ever/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 19:18:24 +0000</pubDate>
		<dc:creator>Lucas Weber</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[bulletproof button]]></category>
		<category><![CDATA[Call to Action]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML code]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=7934</guid>
		<description><![CDATA[There has been lots of talk in the industry recently about Bulletproof buttons, those nifty little buttons in your HTML emails that look exactly the same whether images are on or off.  Today we&#8217;re going to talk about what a Bulletproof button actually is, and how to create one for use in Bronto.
So, what [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/11/24/adding-style-to-your-images/' rel='bookmark' title='Permanent Link: Adding Style To Your Images'>Adding Style To Your Images</a> <small> Do your images have style?  If not, why?  It&#8217;s...</small></li>
<li><a href='http://brontoversity.com/2009/09/03/see-what-they-see-inbox-previews/' rel='bookmark' title='Permanent Link: See What They See: Inbox Previews'>See What They See: Inbox Previews</a> <small>At Bronto, we work hard to implement features that not...</small></li>
<li><a href='http://brontoversity.com/2010/02/04/setting-the-wysiwyg-editor-to-basic-mode/' rel='bookmark' title='Permanent Link: Setting The WYSIWYG Editor To Basic Mode'>Setting The WYSIWYG Editor To Basic Mode</a> <small>Bronto&#8217;s WYSIWYG editor is a fantastic way to create and...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2010/06/bullet.jpg"><img class="alignright size-full wp-image-7947" title="bullet" src="http://brontoversity.com/wp-content/uploads/2010/06/bullet.jpg" alt="bullet image" width="199" height="149" /></a>There has been lots of talk in the industry recently about Bulletproof buttons, those nifty little buttons in your HTML emails that look exactly the same whether images are on or off.  Today we&#8217;re going to talk about what a Bulletproof button actually is, and how to create one for use in Bronto.</p>
<h3>So, what is a Bulletproof button anyway?</h3>
<p>A Bulletproof button is a button or navigation bar in your HTML email that looks the same regardless of whether the contact has enabled images or not. They are great for calls to action that can be seen even if the contact  doesn&#8217;t enable images in their inbox. Instead of being made up of one or more images like a traditional graphical button, bulletproof buttons are built from pure HTML. You may not have the same graphic flair available to you, but that is a small tradeoff for the greatly enhanced readability.</p>
<p>Below is an example of each kind of button. The button on the left is actually a bullet proof button. If you highlight it, you&#8217;ll notice that you can actually select the text on it. The button on the right is a regular old graphic button, which, if images were not available, would be totally invisible! Not much use, huh?</p>
<table style="height: 86px;" border="0" cellspacing="0" cellpadding="0" width="550" align="center">
<tbody>
<tr>
<td width="265" align="center">
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td style="color: #ffffff; font-family: Arial, Helvetica, sans-serif;" width="150" height="80" align="center" valign="middle" bgcolor="#4b7523"><a style="color: white;" href="#">Bulletproof!</a></td>
</tr>
</tbody>
</table>
</td>
<td width="20"></td>
<td width="265" align="center" valign="middle"><a href="http://brontoversity.com/wp-content/uploads/2010/06/image_button.jpg"><img src="http://brontoversity.com/wp-content/uploads/2010/06/image_button.jpg" alt="Image button" width="150" height="80" /></a></td>
</tr>
</tbody>
</table>
<h3>So how can I make a bulletproof button?</h3>
<p>Making these buttons used to be a bit of a chore. You would have to manually write the HTML code involved. The code for the button above looks like this:</p>
<pre class="brush:[html]">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="color: #ffffff; font-family: Arial, Helvetica, sans-serif;" width="150" height="80" align="center" valign="middle" bgcolor="#4b7523"> <a href="http://">Bulletproof!</a></td>
</tr>
</tbody>
</table>
</pre>
<p>Luckily, the folks over at Email Transit have whipped up a Bulletproof Button Generator that they have been kind enough to share with the internet. You can find the generator at <a href="http://emailtransmit.com/bulletproof">http://emailtransmit.com/bulletproof</a></p>
<p>That&#8217;s all there is to it. If you have any questions, please leave them in the comments section below.</p>
<p><em><br />
Lucas Weber<br />
Bronto Client Services</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/11/24/adding-style-to-your-images/' rel='bookmark' title='Permanent Link: Adding Style To Your Images'>Adding Style To Your Images</a> <small> Do your images have style?  If not, why?  It&#8217;s...</small></li>
<li><a href='http://brontoversity.com/2009/09/03/see-what-they-see-inbox-previews/' rel='bookmark' title='Permanent Link: See What They See: Inbox Previews'>See What They See: Inbox Previews</a> <small>At Bronto, we work hard to implement features that not...</small></li>
<li><a href='http://brontoversity.com/2010/02/04/setting-the-wysiwyg-editor-to-basic-mode/' rel='bookmark' title='Permanent Link: Setting The WYSIWYG Editor To Basic Mode'>Setting The WYSIWYG Editor To Basic Mode</a> <small>Bronto&#8217;s WYSIWYG editor is a fantastic way to create and...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2010/06/29/bulletproof-buttons-now-easier-than-ever/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Style To Your Images</title>
		<link>http://brontoversity.com/2009/11/24/adding-style-to-your-images/</link>
		<comments>http://brontoversity.com/2009/11/24/adding-style-to-your-images/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 18:53:12 +0000</pubDate>
		<dc:creator>Lucas Weber</dc:creator>
				<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[blue border]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=5519</guid>
		<description><![CDATA[
Do your images have style?  If not, why?  It&#8217;s simple in Bronto&#8217;s WYSIWYG editor to add styling to your images to give your message that professional feel.  In today&#8217;s post, we&#8217;ll look at the styling tools we offer and see how to use them to fix a couple of common problems.
A Look at the Image [...]


Related posts:<ol><li><a href='http://brontoversity.com/2010/02/04/setting-the-wysiwyg-editor-to-basic-mode/' rel='bookmark' title='Permanent Link: Setting The WYSIWYG Editor To Basic Mode'>Setting The WYSIWYG Editor To Basic Mode</a> <small>Bronto&#8217;s WYSIWYG editor is a fantastic way to create and...</small></li>
<li><a href='http://brontoversity.com/2010/03/16/adding-blocks-of-re-editable-dynamic-content/' rel='bookmark' title='Permanent Link: Adding Blocks Of Re-Editable Dynamic Content'>Adding Blocks Of Re-Editable Dynamic Content</a> <small>In the past, the only way for you to edit...</small></li>
<li><a href='http://brontoversity.com/2009/12/03/dynamically-adding-values-to-conversion-tracking-urls/' rel='bookmark' title='Permanent Link: Dynamically Adding Values To Conversion Tracking URLs'>Dynamically Adding Values To Conversion Tracking URLs</a> <small>In recent weeks, I have been getting a lot of...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2009/11/stylindog.jpg"><img class="alignright size-full wp-image-5525" src="http://brontoversity.com/wp-content/uploads/2009/11/stylindog.jpg" alt="stylindog" width="300" height="204" /></a></p>
<p>Do your images have style?  If not, why?  It&#8217;s simple in Bronto&#8217;s WYSIWYG editor to add styling to your images to give your message that professional feel.  In today&#8217;s post, we&#8217;ll look at the styling tools we offer and see how to use them to fix a couple of common problems.</p>
<h3>A Look at the Image Appearance tab</h3>
<p>In order to see what styles you can apply to your images, you&#8217;ll need to go to the normal Insert/Edit Image button (<img src="http://brontoversity.com/wp-content/uploads/2009/11/insertimage.jpg" alt="Insert / Edit Image" width="19" height="19" />) in the Bronto WYSIWYG editor. Clicking this button will bring up the standard image inserting dialogue box. If you take a look at this, you&#8217;ll notice two tabs at the top, one of which is labeled <em>Appearance</em>.</p>
<p>After clicking on the <em>Appearance</em> tab, you&#8217;ll see the editor window below:</p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/11/appearance.jpg"><img class="aligncenter size-full wp-image-5529" src="http://brontoversity.com/wp-content/uploads/2009/11/appearance.jpg" alt="Appearance tab" width="525" height="445" /></a></p>
<p>Now that we have the Appearance tab pulled up, we&#8217;ll walk through what each of the settings does&#8230;</p>
<h3>The Alignment Setting</h3>
<p>The Alignment setting allows you to align your image. You can choose from a number of different alignment options, including the two most commonly used, left and right.  Aligning an image left will cause text to wrap around the image on the right side, and aligning an image right will cause the text to wrap around on the left.  Like the graphic below.</p>
<p style="text-align: left;"><a href="http://brontoversity.com/wp-content/uploads/2009/11/alignment.jpg"><img class="aligncenter size-full wp-image-5531" src="http://brontoversity.com/wp-content/uploads/2009/11/alignment.jpg" alt="Alignment" width="441" height="285" /></a></p>
<h3>Dimensions</h3>
<p>The Dimensions setting allows you to set the size of your image. It will let you define a width and a height for the image you are styling. It also includes a checkbox that will, if checked, keep the image proportions intact so that your image does not distort when it re-sizes.</p>
<h3>Vertical and Horizontal space</h3>
<p>The Vertical and Horizontal space boxes are great for allowing your images a little breathing room.  If you look back at the alignment example above, you&#8217;ll notice that the images and the text are really close together.  If we take the same left aligned image and put a value of 10 in both the vertical and horizontal space boxes, an invisible buffer of 10 pixels in either direction will surround the image. The result will be much nicer, like so:</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/11/vhspace.jpg"><img class="aligncenter size-full wp-image-5533" src="http://brontoversity.com/wp-content/uploads/2009/11/vhspace.jpg" alt="Vertical and Horizontal spacing" width="441" height="150" /></a></p>
<h3>Border</h3>
<p>The Border property allows you to set a border around your image. The border will be solid with a thickness set to whatever number you type into the box. This is not the most useful aspect of the Border property though. Oddly enough, the vast majority of users will set the Border attribute to 0.  Setting it to 0 will eliminate the ugly blue border that appears around images when you place a link on them. This blue border can be quite the eyesore in an otherwise beautiful email marketing message, so it really pays to get rid of it with this simple setting.</p>
<h3>Style</h3>
<p>The Style box is kind of a catch all that allows you to apply custom styling to your images using CSS. Using this box will require knowledge of CSS syntax and attributes.</p>
<p>So that is our quick and easy look at the image styling options available in the Bronto WYSIWYG editor. The different styles offered here can really help to lend a professional look and feel to your WYSIWYG generated messages, and can hopefully increase your ROI in the process.</p>
<p><em>Lucas Weber,<br />
Bronto Client Services</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2010/02/04/setting-the-wysiwyg-editor-to-basic-mode/' rel='bookmark' title='Permanent Link: Setting The WYSIWYG Editor To Basic Mode'>Setting The WYSIWYG Editor To Basic Mode</a> <small>Bronto&#8217;s WYSIWYG editor is a fantastic way to create and...</small></li>
<li><a href='http://brontoversity.com/2010/03/16/adding-blocks-of-re-editable-dynamic-content/' rel='bookmark' title='Permanent Link: Adding Blocks Of Re-Editable Dynamic Content'>Adding Blocks Of Re-Editable Dynamic Content</a> <small>In the past, the only way for you to edit...</small></li>
<li><a href='http://brontoversity.com/2009/12/03/dynamically-adding-values-to-conversion-tracking-urls/' rel='bookmark' title='Permanent Link: Dynamically Adding Values To Conversion Tracking URLs'>Dynamically Adding Values To Conversion Tracking URLs</a> <small>In recent weeks, I have been getting a lot of...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/11/24/adding-style-to-your-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Master Of Your Domain</title>
		<link>http://brontoversity.com/2009/08/21/master-of-your-domain/</link>
		<comments>http://brontoversity.com/2009/08/21/master-of-your-domain/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 18:55:06 +0000</pubDate>
		<dc:creator>Frank Chapman</dc:creator>
				<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[lists]]></category>
		<category><![CDATA[rendering]]></category>
		<category><![CDATA[segments]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=4232</guid>
		<description><![CDATA[As an email marketer, you are probably already aware that html emails render differently in various email clients.  Although it&#8217;s impossible to know exactly what email client everyone is using, you can make some educated assumptions based on the domain name of some email addresses.  Sometimes it is best to send emails that are designed [...]


Related posts:<ol><li><a href='http://brontoversity.com/2009/10/01/advanced-segmentation-with-additional-rules-and-criteria/' rel='bookmark' title='Permanent Link: Advanced Segmentation With Additional Rules And Criteria'>Advanced Segmentation With Additional Rules And Criteria</a> <small>In my last post, I looked at the basics of...</small></li>
<li><a href='http://brontoversity.com/2009/11/17/testing-testing-1-2-3-sending-test-messages/' rel='bookmark' title='Permanent Link: Testing, Testing 1, 2, 3: Sending Test Messages'>Testing, Testing 1, 2, 3: Sending Test Messages</a> <small>As a Bronto user, you have probably been sending test...</small></li>
<li><a href='http://brontoversity.com/2009/09/10/segmentation-basics/' rel='bookmark' title='Permanent Link: Segmentation Basics'>Segmentation Basics</a> <small>In previous posts, we have talked a lot about using...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-4243" src="http://brontoversity.com/wp-content/uploads/2009/08/picture-1.png" alt="The Kramer" width="253" height="366" />As an email marketer, you are probably already aware that html emails render differently in various email clients.  Although it&#8217;s impossible to know exactly what email client everyone is using, you can make some educated assumptions based on the domain name of some email addresses.  Sometimes it is best to send emails that are designed for specific email clients.</p>
<p>In this example, we are going to assume that your targeted list has a large amount of Gmail addresses that you would like to send to.  You can easily find this out by looking at the pie chart on your list&#8217;s overview page.  What you want to do now is create a segment from this list that includes only these Gmail addresses.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/08/pie_chart.jpg" target="_blank"><img class="size-full wp-image-4250 aligncenter" src="http://brontoversity.com/wp-content/uploads/2009/08/pie_chart.jpg" alt="Pie Chart That Lists Your Contact's Domains" width="325" height="215" /></a></p>
<h3>The Segment</h3>
<p>On the Contacts tab, choose the Segments option.  This will take you to the &#8220;All Segments&#8221; page.<a href="http://brontoversity.com/wp-content/uploads/2009/08/segment_link.jpg" target="_blank"><img class="aligncenter size-full wp-image-4254" src="http://brontoversity.com/wp-content/uploads/2009/08/segment_link.jpg" alt="Click here to see your segments" width="485" height="115" /></a> Here you are able to see all of the segments in your account.  Click the &#8220;Create Segment&#8221; link in the top right of this page.<a href="http://brontoversity.com/wp-content/uploads/2009/08/create_segment_link.jpg" target="_blank"><img class="alignright size-full wp-image-4259" src="http://brontoversity.com/wp-content/uploads/2009/08/create_segment_link.jpg" alt="Click this to create a segment" width="150" height="56" /></a> Give your segment a name and make sure to mark the radio button next to &#8220;Select contacts who match all rules described below.&#8221;  Proceed to Rule one and establish the list that you are working with.  In this case we are using the Blog Post List. Choose &#8220;On List&#8221; from the first drop down and then choose your list in the second drop down. You should now be able to click on the &#8220;Calculate Criteria&#8221; link to see how many contacts are included in this list. In this case we are working with a list of 1,788 contacts.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/08/rule_1.jpg" target="_blank"><img class="aligncenter size-full wp-image-4262" src="http://brontoversity.com/wp-content/uploads/2009/08/rule_1.jpg" alt="This is rule 1 of your segment" width="520" height="104" /></a></p>
<p><a href="http://brontoversity.com/wp-content/uploads/2009/08/create_new_rule.jpg" target="_blank"><img class="alignright size-full wp-image-4267" src="http://brontoversity.com/wp-content/uploads/2009/08/create_new_rule.jpg" alt="Click here to create a new rule" width="152" height="55" /></a>Now, click the link to create a new rule.</p>
<p>You will need to establish your accounts Gmail.com contacts. In the first drop down, choose &#8220;Email address.&#8221;  In the second drop down list, choose &#8220;contains.&#8221;  The last field for this rule is a text field.  In this field you would add gmail.com. You can now click on the &#8220;Calculate Criteria&#8221; link now to see how many gmail.com addresses you have in your account.  It&#8217;s important to remember that this rule is showing you how many of these addresses you have across your whole account and not just on the list.</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/08/rule_2.jpg" target="_blank"><img class="aligncenter size-full wp-image-4271" src="http://brontoversity.com/wp-content/uploads/2009/08/rule_2.jpg" alt="This is rule number 2 in your segment" width="519" height="109" /></a></p>
<p style="text-align: left;">Click the link to &#8220;Calculate Full Segment&#8221; and you will now find the intersection between the contacts on your stated list and contacts with gmail.com in their address. In this example we have 135 contacts that now belong to this segment.  Save this segment and you are ready to send to your Gmail contacts.<a href="http://brontoversity.com/wp-content/uploads/2009/08/full_segment.jpg" target="_blank"><img class="aligncenter size-full wp-image-4274" src="http://brontoversity.com/wp-content/uploads/2009/08/full_segment.jpg" alt="Here's your segment total" width="296" height="109" /></a></p>
<h3>Sending To This Segment</h3>
<p style="text-align: left;">When you send your message in Bronto, just choose this segment from the &#8220;Select Recipients&#8221; area as you would any list you are sending to.<a href="http://brontoversity.com/wp-content/uploads/2009/08/select_recipients.jpg" target="_blank"><img class="aligncenter size-full wp-image-4317" src="http://brontoversity.com/wp-content/uploads/2009/08/select_recipients.jpg" alt="This is where you select your recipients" width="480" height="149" /></a>It is important to remember that if you are sending another version of this same message to the rest of your list, you should select your original list for that delivery. Also for that delivery, you should choose the segment created above from the &#8220;Ineligible Recipients&#8221; area in the advanced sending options to ensure that the contacts on the segment created above don&#8217;t also receive the version of the message sent to the entire list.</p>
<h3>The Power of Segmentation</h3>
<p>This is only a small part of what makes segmentation in the Bronto application such a powerful marketing tool.  There are hundreds of ways to use segmentation to send targeted messages to select groups of contacts.  If you have any questions on creating a segment, please make sure to contact anyone in Client Services here at Bronto.</p>
<p><em>Frank Chapman<br />
Bronto Client Service</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2009/10/01/advanced-segmentation-with-additional-rules-and-criteria/' rel='bookmark' title='Permanent Link: Advanced Segmentation With Additional Rules And Criteria'>Advanced Segmentation With Additional Rules And Criteria</a> <small>In my last post, I looked at the basics of...</small></li>
<li><a href='http://brontoversity.com/2009/11/17/testing-testing-1-2-3-sending-test-messages/' rel='bookmark' title='Permanent Link: Testing, Testing 1, 2, 3: Sending Test Messages'>Testing, Testing 1, 2, 3: Sending Test Messages</a> <small>As a Bronto user, you have probably been sending test...</small></li>
<li><a href='http://brontoversity.com/2009/09/10/segmentation-basics/' rel='bookmark' title='Permanent Link: Segmentation Basics'>Segmentation Basics</a> <small>In previous posts, we have talked a lot about using...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/08/21/master-of-your-domain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating an email using a Microsoft Word document?  We have a button for that.</title>
		<link>http://brontoversity.com/2009/05/26/creating-an-email-using-a-microsoft-word-document-we-have-a-button-for-that/</link>
		<comments>http://brontoversity.com/2009/05/26/creating-an-email-using-a-microsoft-word-document-we-have-a-button-for-that/#comments</comments>
		<pubDate>Tue, 26 May 2009 16:21:55 +0000</pubDate>
		<dc:creator>Rob Slade</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Did You Know?]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Bronto]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email message]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML code]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Word]]></category>
		<category><![CDATA[paste from Word]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[rendering]]></category>
		<category><![CDATA[toolbar]]></category>
		<category><![CDATA[Word]]></category>
		<category><![CDATA[Word button]]></category>
		<category><![CDATA[Word formatted]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://brontoversity.com/?p=2804</guid>
		<description><![CDATA[
Have you ever had a Microsoft Word document that you would like to send as an email?  If you&#8217;re like a lot of our clients, then you probably have.  You have probably also noticed that when you copy and paste the Word document into an email, it probably doesn&#8217;t look the same as it did [...]


Related posts:<ol><li><a href='http://brontoversity.com/2010/02/04/setting-the-wysiwyg-editor-to-basic-mode/' rel='bookmark' title='Permanent Link: Setting The WYSIWYG Editor To Basic Mode'>Setting The WYSIWYG Editor To Basic Mode</a> <small>Bronto&#8217;s WYSIWYG editor is a fantastic way to create and...</small></li>
<li><a href='http://brontoversity.com/2010/05/04/got-the-email-rendering-blues/' rel='bookmark' title='Permanent Link: Got The Email Rendering Blues?'>Got The Email Rendering Blues?</a> <small>Background images not rendering in Outlook? Tables not looking quite as...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://brontoversity.com/wp-content/uploads/2009/05/toolbarmadness.jpg" target="_new"><img style="float:right; padding:5px 5px 5px 5px;" src="http://brontoversity.com/wp-content/uploads/2009/05/toolbarmadness.jpg" alt="toolbarmadness" width="250" height="149" /></a></p>
<p>Have you ever had a Microsoft Word document that you would like to send as an email?  If you&#8217;re like a lot of our clients, then you probably have.  You have probably also noticed that when you copy and paste the Word document into an email, it probably doesn&#8217;t look the same as it did in Word.  Why?  What happened?!?</p>
<p>I would like to take this opportunity to explain why this happens, as well as show you the proper way to bring content from Microsoft Word into Bronto.</p>
<p>The initial display problems stem from the HTML code that Microsoft inserts into a Word formatted document.  Much of this HTML code is proprietary to Microsoft and is only rendered correctly in a Microsoft product.  Most email clients (even Outlook) do not know how to render this HTML correctly, and will either ignore it completely, or make their best effort to display it.  Either way, it usually comes out broken and is not displayed correctly.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="50%" align="center"><a href="http://brontoversity.com/wp-content/uploads/2009/05/original_word_doc1.jpg" target="_new"><img class="alignnone size-full wp-image-2900" src="http://brontoversity.com/wp-content/uploads/2009/05/original_word_doc1.jpg" alt="original_word_doc1" width="241" height="250" /></a></p>
<p><em>Original Word Document (click to enlarge)</em></td>
<td width="50%" align="center"><a href="http://brontoversity.com/wp-content/uploads/2009/05/paste_directly.jpg" target="_new"><img class="alignnone size-full wp-image-2901" src="http://brontoversity.com/wp-content/uploads/2009/05/paste_directly.jpg" alt="paste_directly" width="261" height="250" /></a></p>
<p><em>Word Document Pasted Directly into Bronto (click to enlarge)</em></td>
</tr>
</tbody>
</table>
<p>Bronto has a tool in the WYSIWYG editor that allows you to paste information from a Word document.</p>
<p><img class="size-full wp-image-2810 alignnone" src="http://brontoversity.com/wp-content/uploads/2009/05/pfwbutton.jpg" alt="pfwbutton" width="159" height="24" /></p>
<p>The Paste From Word button is located on the top row of the WYSIWYG toolbar:</p>
<p><img class="size-full wp-image-2816 alignnone" src="http://brontoversity.com/wp-content/uploads/2009/05/toolbar1.jpg" alt="toolbar1" width="542" height="80" /></p>
<h3>How to use the Paste From Word tool:</h3>
<ol>
<li>Click the <strong>Paste From Word</strong> button. A pop-up window will appear.</li>
<li>Copy the text you wish to paste from Mircosoft Word into the WYSIWYG editor by highlighting the text and hitting <strong>CTRL + C</strong> on your keyboard.</li>
<li>Paste the copied text into the text box in the Paste from Word pop-up window by placing your cursor in the text box and hitting <strong>CTRL + V</strong>.</li>
<li>Click <strong>Insert</strong> to add the text into WYSIWYG Editor.</li>
</ol>
<p>So what exactly does the Paste From Word button do?  Let&#8217;s take a look at some examples of the HTML code before and after using the button.  If you try and copy and paste content directly from Word into the WYSIWYG editor, the HTML code in the background will look similar to this:</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/05/word_code.jpg" target="_new"><img class="size-full wp-image-2902 aligncenter" src="http://brontoversity.com/wp-content/uploads/2009/05/word_code.jpg" alt="word_code" width="500" height="419" /></a></p>
<p>As you can see, this HTML code is full of unnecessary tags that are specific to Microsoft.  Email clients will simply have fits trying to render this the way it is supposed to look.  Now lets take a look at the HTML code of the same Word document after we paste it using the Paste From Word button:</p>
<p style="text-align: center;"><a href="http://brontoversity.com/wp-content/uploads/2009/05/html_code.jpg" target="_new"><img class="size-full wp-image-2903 aligncenter" src="http://brontoversity.com/wp-content/uploads/2009/05/html_code.jpg" alt="html_code" width="500" height="419" /></a></p>
<p style="text-align: left;">There is now a dramatic difference in the structure and cleanliness of the HTML code.  This message should have no issues rendering correctly in an email client.</p>
<p style="text-align: left;">**One thing you may notice when you insert your Word document into the WYSIWYG editor using the Paste From Word button is that some of the text formatting will be removed.  This is because of the removal of the Word HTML that formatted that text.  You can use the WYSIWYG editor to quickly re-format that text into the correct size, font, style, etc. to make the message appear as it did in Word.  Using the WYSIWYG editor to format the message will help to ensure that email clients render it correctly.</p>
<p style="text-align: left;">Please feel free to share your thoughts, comments, and any related issues that you have experienced in the comments section below.</p>
<p><em>Rob Slade</em><br />
<em>Client Support Specialist at Bronto</em></p>


<p>Related posts:<ol><li><a href='http://brontoversity.com/2010/02/04/setting-the-wysiwyg-editor-to-basic-mode/' rel='bookmark' title='Permanent Link: Setting The WYSIWYG Editor To Basic Mode'>Setting The WYSIWYG Editor To Basic Mode</a> <small>Bronto&#8217;s WYSIWYG editor is a fantastic way to create and...</small></li>
<li><a href='http://brontoversity.com/2010/05/04/got-the-email-rendering-blues/' rel='bookmark' title='Permanent Link: Got The Email Rendering Blues?'>Got The Email Rendering Blues?</a> <small>Background images not rendering in Outlook? Tables not looking quite as...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://brontoversity.com/2009/05/26/creating-an-email-using-a-microsoft-word-document-we-have-a-button-for-that/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
