<?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>HighRoad Solution</title>
	<atom:link href="http://website.highroadsolution.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://website.highroadsolution.com</link>
	<description></description>
	<lastBuildDate>Fri, 17 Feb 2012 20:25:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>HTML Template Rendering</title>
		<link>http://website.highroadsolution.com/emarketing/rendering/html-template-rendering/</link>
		<comments>http://website.highroadsolution.com/emarketing/rendering/html-template-rendering/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 17:06:36 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Rendering]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Inline Styles]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2820</guid>
		<description><![CDATA[Most Common Problems with eNewsletters and Solutions.]]></description>
			<content:encoded><![CDATA[<h3>Tags Outside the Body</h3>
<p>Don&#8217;t rely on &lt;html&gt;, &lt;meta&gt;, &lt;doctype&gt;, and &lt;head&gt; tags for rendering elements of your design and leave them out of the markup you deliver.</p>
<h3>Use Inline CSS Styles with Table Layout!</h3>
<ul>
<li>You can attach inline styles to &lt;td&gt;, &lt;a&gt;, &lt;p&gt;, &lt;div&gt;, &lt;span&gt;, &lt;strong&gt;, &lt;em&gt;, etc. tags.</li>
<li>CSS padding only works if placed inline with &lt;td&gt; cell directly (not in &lt;div&gt;, &lt;p&gt;, &lt;span&gt;, etc.)</li>
<li>Use HTML width (not CSS width) when applied to cells.</li>
<li>Align all cells top, left, center, bottom, etc. so they align properly.</li>
<li>Define font styles in all table cells through inline styles and don&#8217;t rely on the style of the parent table cell (nested tables and cells need to have the fonts defined as well)</li>
</ul>
<h3>Assigning Link Colors</h3>
<ul>
<li>For link colors to be applied correctly in most browsers, define your link colors in the body tag as well as in a stylesheet reference inside body (without comment tags).<br /><strong>FIX:</strong><em>&lt;body text=&#8221;#000000&#8243; link=&#8221;#CC6600&#8243; vlink=&#8221;#CC6600&#8243; alink=&#8221;#CC6600&#8243;&gt;</em><br />&lt;style type=&#8221;text/CSS&#8221;&gt;<br />a:link {color: #cc6600; text-decoration: none}<br />a:active {color: #cc6600; text-decoration: none}<br />a:visited {color: #cc6600; text-decoration: none}<br />a:hover {color: #cc6600; text-decoration: underline;}<br />&lt;/style&gt;</li>
<li>Gmail renders all link colors as a dark blue unless applied directly to the link as in the below examples:</li>
<li>To force all links to be a color (when not working in some eMail clients using the method above), one must manually add in a span inline style or font color inside the &lt;a&gt; tags so that the text is forced to take on that color no matter what.<br /><strong>FIX 1:</strong> &lt;a href=&#8221;link&#8221;&gt;&lt;font color=&#8221;#993300&#8243;&gt;link text&lt;/font&gt;&lt;/a&gt; <br /><strong>FIX 2:</strong> &lt;a href=&#8221;link&#8221;&gt;&lt;span style=&#8221;color:#993300;&#8221;&gt;link text&lt;/span&gt;&lt;/a&gt;</li>
</ul>
<h3>CSS &amp; HTML Backgrounds</h3>
<p>CSS &amp; HTML backgrounds <strong>do not</strong> always work (Outlook 2007 fails both tests) <br /><strong>FIX:</strong> Use HTML background (which repeats by default) with bgcolor as backup for readability purposes, and make sure no important content is in background or render as an image instead.</p>
<h3>Avoid Rowspan &amp; Colspan</h3>
<p>If creating multiple rows in left side column and one row on the right using rowspan, the left side may try to compensate for the length of the right and pull down the table cells, regardless of height specified. Lotus Notes does not support the colspan/rowspan attributes at all.<br /><strong>FIX:</strong> Place multiple rows inside of a table for your left hand column so there is one column on left and one column on right with a table inside the left column that is aligned top. In other words, nest your tables.</p>
<h3>Table Borders</h3>
<p>Sometimes using CSS to create borders on table cells simply don&#8217;t work correctly (Have seen this in Outlook 2007 and 2010).<br /><strong>FIX:</strong> Force the border by creating a 1px wide/high table cell using a spacer.gif and then fill with a background color that you wish for the border color like so: &lt;td bgcolor=”#cccccc”&gt;&lt;img src=”spacer.gif” height=”1” width=”1” /&gt;&lt;/td&gt;</p>
<p>HTML bordercolor does not render in multiple clients. <br /><strong>FIX:</strong> Use CSS borders like so: &lt;border-left-style:solid; border-left-color:#8D2C1C; border-left-width:2px;&gt;</p>
<h3>Background Color for Entire Template</h3>
<p>Body background colors only work in Outlook 2003 and AOL, no other eMail clients, even if in the CSS styles or body tag itself; <br /><strong>FIX:</strong> Move layout inside a table with 100% width and apply bgcolor to it.</p>
<h3>List Styles</h3>
<p>List-style-image doesn&#8217;t always work.<br /><strong>FIX:</strong> Use a table with two columns to align your images and content.</p>
<h3>Image Maps</h3>
<p>Image maps don&#8217;t display links in Outlook 2007 and sometimes other eMail clients.<br /><strong>FIX:</strong> Place the image map code directly after the  code for the image it is connected to. Make sure they are contained within the same table cell.</p>
<p>Image maps don&#8217;t work in Gmail with safari browser.*<br /><strong>FIX:</strong> Slice images into multiple parts and assign links to each part.</p>
<h3>CSS Margins with Images</h3>
<p>CSS margins applied to the &lt;img&gt; tag do not work. (hspace/vspace don&#8217;t work either in Outlook)<br /><strong>FIX:</strong> Place image inside a table with padding applied to the td, or add padding to the image itself.</p>
<h3>CSS Long style vs. Short style</h3>
<p>Short styles sometimes don&#8217;t seem to work in some clients (ie. font: 11px/17px Arial, Helvetica, Times; color:#333;)<br /><strong>FIX:</strong> font-size: 11px; line-height:17px; font-family: Arial, Helvetica, Times; color:#333333;</p>
<h3>Unwanted Spacing Around Images</h3>
<p>Hotmail when using Firefox browser creates a vertical space between images separated by a &lt;br&gt; in the same &lt;td&gt;. Gmail creates unwanted vertical space around lone images inside an otherwise empty &lt;td&gt;.<br />FIX: Add style=“display:block;line-height:0px;” to the image directly. You can also use line-height=0px with the &lt;td&gt; assuming there is no text in the &lt;td&gt; that would be affected.</p>
<h3>Most Common Problems why Templates Break</h3>
<ul style="list-style-type: square;">
<li>Long urls</li>
<li>Too-large images</li>
<li>Too-large tables</li>
<li>Table cell widths not defined by spacer.gifs</li>
</ul>
<p><strong>FIX:</strong> link words to a url instead of the url itself, fix table and image widths to fit the cell they are inside of. Use a row of 1px high spacer gifs in each table and give each gif the precise width it needs in order to add up to the table width total.</p>
<h3>Outlook 2007 Problems</h3>
<ul style="list-style-type: square;">
<li>line-height does not work</li>
<li>image hspace and vspace do not work</li>
<li>animated gifs only show first frame, so<br /><strong>FIX:</strong> make sure all relevant info is in first frame</li>
<li>CSS positioning and CSS width tags do not work<br /><strong>FIX:</strong> use table widths instead</li>
<li>Two adjacent cells with different padding values set in the style cause the tops of each cell to not line up properly, due to inheriting the padding value of adjacent (sibling) &lt;td&gt; cells.<br /><strong>FIX:</strong> Make sure all adjacent &lt;td&gt; cells share the same padding value or nest them inside different tables with different padding values.</li>
<li>Make sure to specify background color for all nested tables. Nested tables don&#8217;t often inherit the background color of the parent table or cell.</li>
<li>Place image map code directly next to the image it is referencing as explained above.</li>
<li>CSS borders sometimes do not work correctly; use spacer gifs if needed as explained above.</li>
</ul>
<h3>CSS Attributes with Limited Support</h3>
<ul>
<li>float tag has limited support<br /><strong>FIX:</strong> Use align=left</li>
<li>clear, position, display, overflow, visible have limited support<br /><strong>FIX:</strong> Use nested tables to support your layout</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/rendering/html-template-rendering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telephone or VOIP for your Webinar?</title>
		<link>http://website.highroadsolution.com/hrsnews/telephone-or-voip-for-your-webinar/</link>
		<comments>http://website.highroadsolution.com/hrsnews/telephone-or-voip-for-your-webinar/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:40:18 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Conference Lounge]]></category>
		<category><![CDATA[HRSNews]]></category>
		<category><![CDATA[VOIP]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2618</guid>
		<description><![CDATA[By Jeff Baker
There may be a small debate brewing around about this, but in my opinion…]]></description>
			<content:encoded><![CDATA[<h4>By Jeff Baker</h4>
<p>There may be a small debate brewing around about this, but in my opinion…there is no debate, or a clear cut answer that will apply to everyone.  The only correct answer is “whatever works best for you and your participants.”  For the majority of Educational Webinars, the telephone is a must ( at least for the presenters) to ensure the highest audio quality possible.  You can then take that phone quality audio and stream it out over the Web so that the participants can choose to listen via their computer speakers or dial into the phone number.</p>
<p>For smaller collaborative meetings, 2 way VOIP can be a great way to communicate and help keep costs down.  I always recommend to test it all out first, and to have a back up number…just in case.  Utilizing VOIP for any size meetings is a great way to save money, but you also want to make sure that it doesn’t restrict the participants ability to participate in the event.  One last tidbit on this topic…if your members/guests are paying good money for these events, then stick to the high touch services like operator assisted audio to provide them the highest level of service.</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/hrsnews/telephone-or-voip-for-your-webinar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Socialize Your eMail Content!</title>
		<link>http://website.highroadsolution.com/hrsnews/socialize-your-email-content/</link>
		<comments>http://website.highroadsolution.com/hrsnews/socialize-your-email-content/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:34:55 +0000</pubDate>
		<dc:creator>HRSNews</dc:creator>
				<category><![CDATA[Data & Delivery]]></category>
		<category><![CDATA[HRSNews]]></category>
		<category><![CDATA[Shoutlet]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2454</guid>
		<description><![CDATA[By Jenny Lassi
Linking to your presence on social media platforms in an eMail is a start. Don’t miss out on a great opportunity to let your eMail recipients share your content with their contacts and friends further extending your reach…]]></description>
			<content:encoded><![CDATA[<h4>By Jenny Lassi</h4>
<p>Linking to your presence on social media platforms in an eMail is a start. Don’t miss out on a great opportunity to let your eMail recipients share your content with their contacts and friends further extending your reach.</p>
<p>When people are trying to keep up with the Jones’ in the social media arena, ask yourself “Self, what are we getting out of this and is it worth the time?” Many marketers struggle to understand the ROI for social media.</p>
<p>The beautiful thing about Shoutlet social media sharing technology integrated to your <a title="HighRoad Solution" href="http://website.highroadsolution.com">HighRoad Solution</a> Campaign eMail account is that once set up, your eMails use the system tag %%SHARE%%, you can set it and forget it. Creating an automatic way to share your content beyond your eMail subscriber base is just another way <a title="HighRoad Solution" href="http://website.highroadsolution.com">HighRoad</a> helps socialize your brand and extend your reach.</p>
<p>Another great benefit of sharing is that you can track how many times your content has been shared, who is sharing it and what social media platforms they are sharing to, so you can know who to reward and where your social media team should spend extra time.</p>
<p><img class="alignnone size-full wp-image-2465" title="share search image" src="http://website.highroadsolution.com/wp-content/uploads/share-search.jpg" alt="" width="500" height="343" /></p>
<p><strong>How to Start</strong></p>
<p>Once your Shoutlet account is set up and integrated to your <a title="HighRoad Solution" href="http://website.highroadsolution.com">HighRoad Solution</a> Campaign eMail account, you can begin to use the integrated share features in any email you would like your eMail recipients to share with any social media platform of their choice.</p>
<p>If you want your eMail recipients to be able to share a message, you can link either text or an image to the Share features. Some standard templates already have this built-in and you can use those or if using a custom template you created, you can simply type “Share This Email” somewhere in your message.</p>
<p><a href="http://website.highroadsolution.com/wp-content/uploads/share-this-email-01.jpg"><img class="alignnone size-full wp-image-2466" title="share this eMail" src="http://website.highroadsolution.com/wp-content/uploads/share-this-email-01.jpg" alt="" width="500" height="311" /></a></p>
<p>Once you typed out what you want your Share link to say or inserted a Share button graphic to your message then:</p>
<ul>
<li>Highlight the text or graphic by left clicking on your mouse over that area.</li>
<li>Hit the link Share icon inside the editor and select either text link or image link in the Insert Share to Social Link pop-up box.</li>
</ul>
<p>Note: If your art/graphics department creates your HTML messages offline in an HTML editor like Dreamweaver, they can add the links to Share features for you by linking to the system tag %%SHARE%%.</p>
<p><img class="alignnone size-full wp-image-2467" title="share shoutlet icon" src="http://website.highroadsolution.com/wp-content/uploads/shareshoutlet-icon.jpg" alt="" width="500" height="258" /></p>
<p>Once you’ve successfully created the Share Link inside your message, you will see in the “configure” stage of the message creation process for either a standard test or a live message, an area to enter a title, description and link to either a hosted version of this eMail or to a URL on your website that has the content on it you would like to drive people to.</p>
<p><img class="alignnone size-full wp-image-2469" title="share title description" src="http://website.highroadsolution.com/wp-content/uploads/share-title-description.jpg" alt="" width="500" height="264" /></p>
<p>You can deploy your eMail as usual. When your eMail recipient receives the email and clicks on the link, a Shoutlet pop-up box will appear and prompt the recipient to choose the social media platform they would like to Share the eMail on.</p>
<p><img class="alignnone size-full wp-image-2470" title="share this email" src="http://website.highroadsolution.com/wp-content/uploads/share-this-email02.jpg" alt="" width="500" height="300" /></p>
<p>They will choose the social media platform and the system will guide them through the process of logging into the platform they chose and once they do, they can add a note if they choose and post to their social media wall. This allows their friends, contacts or followers to interact with your content further extending the reach of your brand.</p>
<p><img class="alignnone size-full wp-image-2472" title="Share ThiseMail" src="http://website.highroadsolution.com/wp-content/uploads/ShareThisEmail_03.png" alt="" width="464" height="180" /></p>
<p>After the message is sent and recipients of your email have shared your message, you can view the reporting detail in the “message details” and click on the “View Report” link by Share to Social Activity.</p>
<p><img class="alignnone size-full wp-image-2473" title="share report widget" src="http://website.highroadsolution.com/wp-content/uploads/share-report-widget.jpg" alt="" width="350" height="629" /></p>
<p>Once you click on the link to view the report, the Shoutlet report will display for you the information about how many times your eMail was shared and what social media platforms your content is getting shared to.</p>
<p><img class="alignnone size-full wp-image-2474" title="share shoutlet reporting" src="http://website.highroadsolution.com/wp-content/uploads/share-shoutlet-reporting.jpg" alt="" width="500" height="489" /></p>
<p>If you have any further questions, please don’t hesitate to reach out to <a href="mailto:support@highroadsolution.com">Support</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/hrsnews/socialize-your-email-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Surveys</title>
		<link>http://website.highroadsolution.com/hrsnews/mobile-surveys/</link>
		<comments>http://website.highroadsolution.com/hrsnews/mobile-surveys/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:28:52 +0000</pubDate>
		<dc:creator>HRSNews</dc:creator>
				<category><![CDATA[HRSNews]]></category>
		<category><![CDATA[Tech Spotlight]]></category>
		<category><![CDATA[AMS]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[eSurvey]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2451</guid>
		<description><![CDATA[By Erika Beshore
HighRoad Solution’s eSurvey powered by KeySurvey is aggressively tracking the space to ensure its surveys are compatible with most popular devices...]]></description>
			<content:encoded><![CDATA[<h4>By Erika Beshore</h4>
<p>HighRoad Solution’s <a title="eSurveys" href="http://website.highroadsolution.com/e-marketing-solutions/esurveys/">eSurvey</a> powered by <em>KeySurvey</em> is aggressively tracking the space to ensure its surveys are compatible with most popular devices (Android, iOS, and despite all efforts by RIM to the contrary &#8211; even BlackBerry). Understanding that we can&#8217;t predict when users will open a survey on a mobile device, our eSurvey tool now offers the ability to detect the users&#8217; browser type and adjust the style sheets accordingly.  Also, we have available a beta version of the native Android application will allow for offline data collection on phones and tablets.</p>
<p>Whatever your needs are, HighRoad Solution’s <a title="eSurveys" href="http://website.highroadsolution.com/e-marketing-solutions/esurveys/">eSurvey</a> offers to help you do business smarter and faster with the diverse set of out-of-the box and custom solutions.</p>
<ul>
<li>Custom Development</li>
<li>Professional Services</li>
<li>Integration with AMS</li>
<li>Branding</li>
<li>Plug-ins</li>
<li>Customer Satisfaction Surveys</li>
<li>Buying Experience Surveys</li>
<li>Employee Satisfaction Surveys</li>
<li>Product Evaluation Surveys</li>
<li>Assessment Forms</li>
</ul>
<p><img class="alignnone size-full wp-image-2460" title="Image2" src="http://website.highroadsolution.com/wp-content/uploads/article_image2.gif" alt="" width="300" height="290" /></p>
<p>When it comes to collecting, sharing and leveraging of data, one size doesn&#8217;t fit all. That&#8217;s why you need a customizable data collection and deployment solution built to fit seamlessly into your existing workflow and infrastructure.</p>
<ul>
<li>Data Integration</li>
<li>Real-time Results</li>
<li>Drill-down to Details</li>
<li>Business Intelligence Dashboards</li>
</ul>
<p><img class="alignnone size-full wp-image-2461" title="dashboard image" src="http://website.highroadsolution.com/wp-content/uploads/dashboard.gif" alt="" width="300" height="190" /></p>
<p>From simple reports to complex business intelligence dashboards, HighRoad Solution’s <a title="eSurveys" href="http://website.highroadsolution.com/e-marketing-solutions/esurveys/" target="_blank">eSurvey</a> provides you with accurate data to support the decision-making process.</p>
<p>Seamlessly integrate HighRoad Solution’s<a title="eSurveys" href="http://website.highroadsolution.com/e-marketing-solutions/esurveys/" target="_blank"> eSurvey</a> into your AMS core functionality. Contact your <a title="CONTACT US" href="http://website.highroadsolution.com/contact-us/">Account Manager</a> today for more information.</p>
<p>&nbsp;</p>
<p><span style="font-size: 8pt; line-height: 115%; font-family: 'Arial','sans-serif';">HighRoad Solution’s eSurvey powered by <em>KeySurvey</em> is aggressively tracking the space to ensure its surveys are compatible with most popular devices (Android, iOS, and despite all efforts by RIM to the contrary &#8211; even BlackBerry). Understanding that we can&#8217;t predict when users will open a survey on a mobile device, our eSurvey tool now offers the ability to detect the users&#8217; browser type and adjust the style sheets accordingly.<span>  </span>Also, we have available a beta version of the native Android application will allow for offline data collection on phones and tablets.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/hrsnews/mobile-surveys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>January 2012 &#8211; Release 12.01</title>
		<link>http://website.highroadsolution.com/emarketing/release-notes/release-12-01/</link>
		<comments>http://website.highroadsolution.com/emarketing/release-notes/release-12-01/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 15:16:19 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Release Notes]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2499</guid>
		<description><![CDATA[What's New in the 12.01 January 18, 2012 Release]]></description>
			<content:encoded><![CDATA[<h2>New Features</h2>
<p><a title="Subscriber Quick Search" href="http://website.highroadsolution.com/e-marketing-resources/subscriber-quick-search/">Subscriber Quick Search</a><br />Marketers now have a quick and easy way to search for subscribers from any page of the application.</p>
<h2>Product Enhancements</h2>
<p><a title="Outlook 2010 eMail Client Screenshots" href="http://website.highroadsolution.com/e-marketing-resources/outlook-2010-email-client-screenshots">Outlook 2010 eMail Client Screenshots Added to Message Rendering Reports</a><br />We have modified the Message Rendering Reports to include Outlook 2010.</p>
<p><a title="Export Scheduler" href="http://website.highroadsolution.com/e-marketing-resources/export-scheduler/">Export Scheduler</a><br />Marketers now have the ability to specify file name and format as well as define their audience for export via the updated Export Scheduler.</p>
<p><a title="Authorized API User Access" href="http://website.highroadsolution.com/e-marketing-resources/authorized-api-user-access/">Authorized API User Access</a> <br />Marketers can limit API access for specific users and third parties, minimizing eMS system exposure.</p>
<h2>Release Training</h2>
<p><a title="Register" href="https://www3.gotomeeting.com/register/122969070" target="_blank">Register</a> for training Thursday Jan. 19 at 4 pm ET<br /><a title="Register" href="https://www3.gotomeeting.com/register/352212270" target="_blank">Register</a> for training Friday Jan. 20 at 12 pm ET</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/release-notes/release-12-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Options</title>
		<link>http://website.highroadsolution.com/emarketing/reporting/general-options/</link>
		<comments>http://website.highroadsolution.com/emarketing/reporting/general-options/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 22:15:01 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Reporting]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2665</guid>
		<description><![CDATA[Need help? Answers for many of the more common questions can be found by clicking the “Help” button in the upper right corner of your screen when viewing the report for a sent message...]]></description>
			<content:encoded><![CDATA[<h2>Understanding eMail Message Statistics/Reporting: General Options</h2>
<p>Need help? Answers for many of the more common questions can be found by clicking the “Help” button in the upper right corner of your screen when viewing the report for a sent message. As always, if you need help and are unable to find the answers under the help menu, you can always <a title="eMail" href="mailto:support@highroadsolution.com" target="_blank">eMail</a> or call the HighRoad Solution <a title="Support" href="mailto:support@highroadsolution.com" target="_blank">Support</a> team or 1-703-297-8886.</p>
<p>  <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-help-500.jpg"><img class="alignnone size-full wp-image-2718" title="hrs reports help" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-help-500.jpg" alt="hrs reports help image" width="500" height="353" /></a></p>
<p>&nbsp;</p>
<p>Know exactly what segment(s) were included/excluded for your sent message and when it was sent by viewing the message details. You can click on the plus sign to view your message’s detail.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-messagedetail-5.jpg"><img class="alignnone size-full wp-image-2720" title="hrs reports message detail" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-messagedetail-5.jpg" alt="hrs reports message detail image" width="500" height="487" /></a></p>
<p>&nbsp;</p>
<p>Need a quick report? When you need to supply your team with reporting statistics of one of your sent eMail messages, you can export the statistics in CSV, XML, PDF or XLS format quickly and easily by selecting one of the available icons in the upper right corner.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-downloadreport-.jpg"><img class="alignnone size-full wp-image-2721" title="hrs reports download report" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-downloadreport-.jpg" alt="hrs reports download report image" width="500" height="214" /></a></p>
<p>&nbsp;</p>
<p>Any metric with a blue arrow allows you to drill down further into the subscriber level detail by clicking on the arrow. This will pull all eMail subscribers that meet that criteria into our Search Result page to allow you to do any bulk search action like export your results or preview individual subscriber results.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-clickonmetric-5.jpg"><img class="alignnone size-full wp-image-2722" title="hrs reports click-on metric" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-clickonmetric-5.jpg" alt="hrs reports click-on metric image" width="500" height="547" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/reporting/general-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delivery Reports</title>
		<link>http://website.highroadsolution.com/emarketing/reporting/delivery/</link>
		<comments>http://website.highroadsolution.com/emarketing/reporting/delivery/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 22:10:22 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Reporting]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2483</guid>
		<description><![CDATA[The Delivery tab indicates the performance of the message based on Sent, Delivered, and Bounced...]]></description>
			<content:encoded><![CDATA[<h2>Understanding eMail Message Statistics/Reporting: Delivery Tab</h2>
<p>When viewing the sent message report from one of your sent messages, the delivery tab will display first by default.</p>
<p>The Delivery Performance Summary shows you how many messages were sent, delivered and bounced. You can also see both a numerical and graphical representation of the list build process, delivered as well as <a title="Bounce Types" href="http://website.highroadsolution.com/email-marketing/email-glossary/#b">bounce types</a>.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-delivery-500px.jpg"><img class="alignnone size-full wp-image-2728" title="hrs reports delivery" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-delivery-500px.jpg" alt="delivery image" width="500" height="544" /></a></p>
<p>&nbsp;</p>
<p>The bounce log gives your organization insight into feedback from ISPs and any possible deliverability issues.</p>
<p><a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reporting-downloadbounc.jpg"><img class="alignnone size-full wp-image-2729" title="hrs reporting download bounce log" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reporting-downloadbounc.jpg" alt="download bounce log image" width="500" height="298" /></a></p>
<p>&nbsp;</p>
<p>The bounce log will have the eMail address that bounced, the bounce type and the bounce reason. The bounce log is generated from feedback our sending servers receive from the incoming mail server of the ISP you’re trying to send a message to.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-bouncelog-500px.jpg"><img class="alignnone size-full wp-image-2731" title="hrs reports bouncelog" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-bouncelog-500px.jpg" alt="bouncelog image" width="500" height="186" /></a></p>
<p>&nbsp;</p>
<p>The List Build Process shows you the number of eMail subscribers that are in the included segment(s) and will subtract any exclusions and/or eMail addresses the system has already determined to be invalid. This not only helps your sending reputation and list hygiene, but also saves you money.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-listbuildproces2.jpg"><img class="alignnone size-full wp-image-2733" title="hrs reports list build proces" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-listbuildproces2.jpg" alt="list build proces image" width="500" height="104" /></a></p>
<p>&nbsp;</p>
<p>Bounce Types show you what type of bounces your eMail deployment encountered when attempting to send to your segment/list. This helps you visually see if there are any troubled areas like spam blocks or spam content bounces that could be affecting your eMail message deliverability and negatively impacting your sending reputation.</p>
<p><a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-bouncetypes-500.jpg"><img class="alignnone size-full wp-image-2736" title="hrs reports bounce types" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-bouncetypes-500.jpg" alt="bounce types image" width="500" height="157" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/reporting/delivery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activity Reports</title>
		<link>http://website.highroadsolution.com/emarketing/reporting/activity/</link>
		<comments>http://website.highroadsolution.com/emarketing/reporting/activity/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 22:05:27 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Reporting]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2490</guid>
		<description><![CDATA[The Activity tab shows the action signifying the number of unique subscribers for opens &#038; clicks reported into the system at a specific time...]]></description>
			<content:encoded><![CDATA[<h2>Understanding eMail Message Statistics/Reporting: Activity Tab</h2>
<p>Under the Activity tab of your eMail message statistics, it highlights key engagement metrics like <a title="Opened" href="http://website.highroadsolution.com/email-marketing/email-glossary/#o">Opened</a>, <a title="Clicked" href="http://website.highroadsolution.com/email-marketing/email-glossary/#c">Clicked</a> and <a title="Opt Outs" href="http://website.highroadsolution.com/email-marketing/email-glossary/#o">Opt Outs</a> resulting from that particular sent message.</p>
<p><a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-activity-500px.jpg"><img class="alignnone size-full wp-image-2743" title="hrs reports activity" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-activity-500px.jpg" alt="activity image" width="500" height="434" /></a></p>
<p>You will see both a numeric and also graphical representation of the reporting data. You can filter this view to show Activity By Time for a specific day, before or after a specific day, 7-day range as well as between two dates.</p>
<p>This functionality gives you insight into when your eMail recipients are engaging with your eMail. You can learn a lot about this activity like when it would make sense to send messages in the future, if a particular time of day gets the better engagement results or what days get the better engagement results.</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/reporting/activity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Click Tracking Reports</title>
		<link>http://website.highroadsolution.com/emarketing/reporting/click-tracking/</link>
		<comments>http://website.highroadsolution.com/emarketing/reporting/click-tracking/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 22:00:38 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Segmenting]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2492</guid>
		<description><![CDATA[Click Tracking is one of the easiest ways to not only understand your eMail recipient’s engagement with your eMail content...]]></description>
			<content:encoded><![CDATA[<h2>Understanding eMail Message Statistics/Reporting: Click Tracking Tab</h2>
<p><a title="Click Tracking" href="http://website.highroadsolution.com/email-marketing/email-glossary/#c">Click Tracking</a> is one of the easiest ways to not only understand your eMail recipient’s engagement with your eMail content, but also can allow you to <a title="Segmentation" href="http://website.highroadsolution.com/email-marketing/email-glossary/#s">segment</a> your audience even further by visually seeing what links your eMail subscribers are clicking through to.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-clicktracking-5.jpg"><img class="alignnone size-full wp-image-2749" title="hrs reports click tracking" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-clicktracking-5.jpg" alt="click tracking image" width="500" height="454" /></a></p>
<p>You can customize or filter your click through statistics to understand when your eMail recipients are engaging or clicking through to links from inside your eMail. Simply choose from the available filter criteria from the drop down menu.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-clickthruactivi.jpg"><img class="alignnone  wp-image-2750" title="hrs reports click thru activity" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-clickthruactivi.jpg" alt="click thru activity image" width="500" height="248" /></a></p>
<p>Once you deploy an eMail, if you need to change a link post deployment, you can do so by clicking on “Edit the properties of your link.” This will allow you to paste in the correct URL/link over the old URL, hit save and the correct link will be served moving forward.</p>
<p> <a href="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-editlinks-500.jpg"><img class="alignnone size-full wp-image-2751" title="hrs reports edit links" src="http://website.highroadsolution.com/wp-content/uploads/hrs-reports-editlinks-500.jpg" alt="edit links image" width="500" height="312" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/reporting/click-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SureSend Reports</title>
		<link>http://website.highroadsolution.com/emarketing/reporting/suresend/</link>
		<comments>http://website.highroadsolution.com/emarketing/reporting/suresend/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 21:55:01 +0000</pubDate>
		<dc:creator>jenny</dc:creator>
				<category><![CDATA[Reporting]]></category>

		<guid isPermaLink="false">http://website.highroadsolution.com/?p=2700</guid>
		<description><![CDATA[SureSend reports are fee-based reports that you can enable easily in the message creation process depending on...]]></description>
			<content:encoded><![CDATA[<h2>SureSend Reports: Options, Fees &amp; How They Can Work for You!</h2>
<p>SureSend reports are fee-based reports that you can enable easily in the message creation process depending on the message type used.  If enabled, an additional fee of $25 applies. There are 2-reports you can enable:</p>
<ol>
<li>SureSend Message Rendering Report – When doing a basic or standard test message, this report shows you how your HTML message will look in eMail clients your eMail recipients are using to open your eMail.</li>
<li>SureSend Domain Delivery Report – When doing a live message, this report will show you the top ISPs and if your eMails are being routed to the In-Box, Bulk-Box or going Missing.</li>
</ol>
<p><em>Please Note: Alert HighRoad Support when you enable either report. This will prompt us to review your results so we can better assist you.</em></p>
<p><strong>SureSend Message Rendering Report</strong></p>
<p>When you are doing a basic or standard test message, you can enable the SureSend Message Rendering Report when you want to see how your HTML message renders in the top 19-eMail clients. If you do not see SureSend report options, please reach out to the <a href="mailto:support@highroadsolution.com">support team</a> to have them enabled on your HighRoad account.</p>
<p>To enable, simply click the checkbox in the message creation process.</p>
<p><img class="alignnone size-full wp-image-2702" title="SureSend Message Rendering" src="http://website.highroadsolution.com/wp-content/uploads/SureSend_MessageRendering.jpg" alt="SureSend Message Rendering Image" width="500" height="749" /></p>
<p>The eMail clients included on this report as of January 2012 are:</p>
<ul>
<li>AOL.com (Firefox)</li>
<li>AOL.com (IE)</li>
<li>Android 2.2 Froyo (320&#215;480)</li>
<li>Apple iPad</li>
<li>Apple iPhone</li>
<li>BlackBerry BES HTML</li>
<li>BlackBerry BES HTML Images</li>
<li>Gmail (Firefox)</li>
<li>Hotmail/WLM (Firefox)</li>
<li>Hotmail/WLM (IE)</li>
<li>Lotus Notes 7</li>
<li>MobileMe &#8211; Safari [Firefox]</li>
<li>Outlook 2003</li>
<li>Outlook 2007</li>
<li>Outlook Express 6</li>
<li>Windows Mobile 6 Pro (240&#215;320)</li>
<li>Windows Mobile 6 Pro (320&#215;240)</li>
<li>Yahoo! Mail (Firefox)</li>
<li>Yahoo! Mail (IE)</li>
</ul>
<p>Once you enable the report and send your test message, the report will process and once it’s complete, you can access the results by going to Reports&gt;Rendering. Please Note: Depending on the complexity of your HTML message, this report can take up to 24-hours to become available.</p>
<p><img class="alignnone size-full wp-image-2703" title="SureSend Message Rendering Access" src="http://website.highroadsolution.com/wp-content/uploads/SureSend_MessageRenderingAccess_500px.jpg" alt="" width="500" height="333" /></p>
<p><strong>SureSend Domain Delivery Report</strong></p>
<p>When you are doing a live message, you can enable the SureSend Message Rendering Report when you want to see where the top ISPs are routing your eMail message sent to their clients. Your HighRoad account gives you the sent, delivered and bounced metrics in your eMail’s reporting, but once an eMail is delivered to the incoming eMail server of your recipient, you don’t have insight into if your message is going to the In-Box or Bulk-Box.</p>
<p>To enable, simply click the checkbox in the message creation process.</p>
<p><img class="alignnone size-full wp-image-2704" title="SureSend Domain Delivery" src="http://website.highroadsolution.com/wp-content/uploads/SureSend_DomainDelivery.jpg" alt="SureSend Domain Delivery Image" width="500" height="883" /></p>
<p>&nbsp;</p>
<p>Once you’ve enabled the report and sent your live message, you can see the results in the reporting for that message. When viewing the reporting, you will notice an additional tab called Domain Delivery along with Delivery, Activity and Click Tracking.</p>
<p><img class="alignnone size-full wp-image-2705" title="SureSend Domain Delivery Sample" src="http://website.highroadsolution.com/wp-content/uploads/SureSend_DomainDeliverySample.jpg" alt="SureSend Domain Delivery Sample Image" width="500" height="198" /></p>
<p>Click on the Domain Delivery tab and you will see the ISP, percentage delivered to in-boxes, percentage delivered to bulk-boxes and percentage missing. If any of your messages are considered “Missing,” we recommend you bring this to our attention as soon as possible so we can recommend any corrective actions that could be taken to improve In-Box deliverability.</p>
<p>We at HighRoad are committed to your eMail marketing success. If you have any questions, please reach out to <a href="mailto:support@highroadsolution.com">HighRoad Support</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://website.highroadsolution.com/emarketing/reporting/suresend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

