<?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>Suite26 &#187; HTML</title>
	<atom:link href="http://www.26.co.uk/blog/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.26.co.uk/blog</link>
	<description>Email Marketing, CRM &#38; Survey information and help</description>
	<lastBuildDate>Wed, 01 Feb 2012 10:31:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Always create a plain text version for your email campaign</title>
		<link>http://www.26.co.uk/blog/2010/07/always-create-a-plain-text-version-for-your-email-campaign/</link>
		<comments>http://www.26.co.uk/blog/2010/07/always-create-a-plain-text-version-for-your-email-campaign/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 10:57:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[TEXT]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=374</guid>
		<description><![CDATA[Whenever you create your HTML email campaign in Suite26 or download your own predesigned email template, always make sure you have a plain text version created as a backup.
Why create a plain text version?

Mail Client spam filters are much more likely to filter an email that does not include a plain text version as well [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever you create your HTML email campaign in Suite26 or download your own predesigned email template, always make sure you have a plain text version created as a backup.</p>
<p><strong>Why create a plain text version?</strong></p>
<ol>
<li>Mail Client spam filters are much more likely to filter an email that does not include a plain text version as well as the HTML version.</li>
<li>Some people prefer plain text and have their mail client settings configured to only display plain text. No plain text version = blank email.</li>
<li>Some mail clients and mobile devices cannot display HTML emails.</li>
</ol>
<p><strong>How it works</strong></p>
<p>When you create both an HTML version and a plain text version of an email, Suite26 will automatically send the email as one combined email. If a recipients’ email client can read HTML, they receive the HTML version, but if the recipient’s email client cannot read HTML, then they receive the plain text version and not a blank email.</p>
<p><strong>How to create your plain text version</strong></p>
<p>After you have finished putting the finishing touches to your HTML version of the email, simply highlight all the content (select All) and press copy. Then click on the Plain Text Content tab, and paste it in. This will insert all the text content in a plain text version without your graphics and using minimal formatting.</p>
<p>For more information or help with creating your plain text version, please call <strong>0845 313 0912</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2010/07/always-create-a-plain-text-version-for-your-email-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At last - Outlook 2007 will render background images</title>
		<link>http://www.26.co.uk/blog/2010/07/at-last-outlook-2007-will-render-background-images/</link>
		<comments>http://www.26.co.uk/blog/2010/07/at-last-outlook-2007-will-render-background-images/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 09:47:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=371</guid>
		<description><![CDATA[It has been bane of email marketing for designers and marketers for years, but it has just been revealed that background images can now finally display in Outlook 2007.
With a few modifications to the code, here is how to set it up:
First you have to add xmlns: v=“urn:schemas-microsoft-com:vml” to your html tag.
Secondly, within your style [...]]]></description>
			<content:encoded><![CDATA[<p>It has been bane of email marketing for designers and marketers for years, but it has just been revealed that background images can now finally display in Outlook 2007.</p>
<p>With a few modifications to the code, here is how to set it up:</p>
<p>First you have to add xmlns: v=“urn:schemas-microsoft-com:vml” to your html tag.</p>
<p>Secondly, within your style tag, add the following selector:</p>
<p>v\:* {<br />
behavior: url(#default#VML);<br />
display:inline-block;</p>
<p>Then finally, within your table cell, you must add:</p>
<p>&lt;td width="600" height="402" valign="top" bgcolor="#000000" background="images/yourimage.gif"&gt;<br />
&lt;!—[if gte mso 9]&gt;<br />
&lt;v:image id="image" style='position:absolute; height:402px; width:600px;top:0;left:0;border:0;z-index:1;' src="images/yourimage.gif"/&gt;<br />
&lt;v:shape id="text" style='position:absolute; height:402px; width:600px;top:0;left:0;border:0;z-index:2;'&gt;<br />
&lt;![endif]—&gt;<br />
&lt;p align="center" style="font-family:Arial, Helvetica, sans-serif; color:#ffffff; font-size:18px;"&gt;This is the text in front of the background image.&lt;/p&gt;<br />
&lt;!—[if gte mso 9]&gt;<br />
&lt;/v:shape&gt;<br />
&lt;![endif]—&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2010/07/at-last-outlook-2007-will-render-background-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Order Your Custom Built Email Template</title>
		<link>http://www.26.co.uk/blog/2010/03/order-your-custom-built-email-template/</link>
		<comments>http://www.26.co.uk/blog/2010/03/order-your-custom-built-email-template/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 13:17:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[deliverability]]></category>
		<category><![CDATA[e-mail campaigns]]></category>
		<category><![CDATA[email templates]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[junk]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=248</guid>
		<description><![CDATA[Using a custom built template for your email campaigns has many benefits.  For a start, it reduces the creative building time process, and makes it possible for those without HTML knowledge and the necessary design skills to use a professional looking email template without having to know how to write HTML code.  Following on from [...]]]></description>
			<content:encoded><![CDATA[<p>Using a custom built template for your email campaigns has many benefits.  For a start, it reduces the creative building time process, and makes it possible for those without HTML knowledge and the necessary design skills to use a professional looking email template without having to know how to write HTML code.  Following on from that, optimal HTML code can mean the difference between inbox delivery success or  junk folder failure.  So why not use a custom built email template that has already been tested for optimal HTML structure?</p>
<p>Consistency is key. Using a custom email template will give your emails a familiar look and feel each time you send, helping your customers instantly recognise your brand. Using a custom built template for your company and brand is a great way to direct traffic straight to your website.  By providing links to key landing pages, you are making your products and services easily accessible to your recipients, as well as directing your customer to exactly where you want them go to.</p>
<p>In short, custom built email template designs at a minimum help improve delivery, promote brand exposure and increase traffic to your specific landing pages.  So, are you using a custom email template for your email marketing campaigns?</p>
<p>For more information on how to order your custom built email template, please visit <a href="../../customEmailTemplate">http://www.26.co.uk/customEmailTemplate</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2010/03/order-your-custom-built-email-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Master The Art Of Email Marketing With Suite26</title>
		<link>http://www.26.co.uk/blog/2010/03/master-the-art-of-email-marketing-with-suite26/</link>
		<comments>http://www.26.co.uk/blog/2010/03/master-the-art-of-email-marketing-with-suite26/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 16:20:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[e-mail campaigns]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[personalisation]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[tracking]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=201</guid>
		<description><![CDATA[You can now have Suite26 training at your office. Call 0845 313 0911 to book your session.
From the comfort and convenience of your own office you can now become an expert in the art of email marketing with Suite26.
Master how to:

Import your contacts with ease


Create and send targeted and personalised email campaigns in minutes


Import your [...]]]></description>
			<content:encoded><![CDATA[<p>You can now have Suite26 training at your office. Call 0845 313 0911 to book your session.</p>
<p>From the comfort and convenience of your own office you can now become an expert in the art of email marketing with Suite26.</p>
<p>Master how to:</p>
<ul>
<li>Import your contacts with ease</li>
</ul>
<ul>
<li>Create and send targeted and personalised email campaigns in minutes</li>
</ul>
<ul>
<li>Import your own customised template, logos, links and more to personalise your messages</li>
</ul>
<ul>
<li>Track, follow-up and improve on your campaign performance</li>
</ul>
<ul>
<li>Collect email addresses and build your database from your website</li>
</ul>
<ul>
<li>And much more...</li>
</ul>
<p>We guarantee you'll be able to create and send HTML emails, track responses and measure the effectiveness of your email campaigns to your customers. See firsthand how easy it is to use Suite26 to expand your business.</p>
<p>Call Ricky or Mark on 0845 313 0911 or email enquiries@26.co.uk to book or find out more about your One-2-One training session.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2010/03/master-the-art-of-email-marketing-with-suite26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Year - A New Skill? Learn Something Useful</title>
		<link>http://www.26.co.uk/blog/2010/01/a-new-year-a-new-skill-learn-something-useful/</link>
		<comments>http://www.26.co.uk/blog/2010/01/a-new-year-a-new-skill-learn-something-useful/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 11:39:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[credits]]></category>
		<category><![CDATA[e-mail campaigns]]></category>
		<category><![CDATA[Email credits]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[personalisation]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=183</guid>
		<description><![CDATA[After the huge success of the last training seminars back in September, our in-house training sessions are back by popular demand. So we're inviting all customers to our Harlow offices to attend:
Free Suite26 Training Seminars
Every Wednesday throughout February 2010.
We've put together another jam-packed, interactive seminar, which teaches you everything you need to know to grow [...]]]></description>
			<content:encoded><![CDATA[<p>After the huge success of the last training seminars back in September, our in-house training sessions are back by popular demand. So we're inviting all customers to our Harlow offices to attend:</p>
<p><strong>Free Suite26 Training Seminars<br />
Every Wednesday throughout February 2010.</strong></p>
<p>We've put together another jam-packed, interactive seminar, which teaches you everything you need to know to grow your business using email marketing.</p>
<p>It doesn't matter whether you're a complete novice or have some experience of email marketing, as we show you how Suite26 makes it quick and easy to:</p>
<p>• Manage multiple email marketing campaigns<br />
• Create and send professional looking, personalised HTML emails with images and logos<br />
• Import your existing contact lists and create targeted customer groups<br />
• Track and analyse individual customer responses<br />
• Measure and improve on your campaign performance.</p>
<p><strong>Your seminar includes:</strong></p>
<p>• Helpful How-To Guides<br />
• 250 FREE email credits + 250 if you book early<br />
• A Free Lunch</p>
<p><strong>Venue</strong>: Unit 2, 6 West Road, Harlow, Essex, <a href="http://maps.google.co.uk/maps?q=CM20+2DU&amp;oe=utf-8&amp;rls=org.mozilla:en-GB:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;hq=&amp;hnear=Harlow,+Essex+CM20+2DU&amp;gl=uk&amp;ei=zQ0iS9DWHqGUjAezl-zVBw&amp;sa=X&amp;oi=geocode_result&amp;ct=title&amp;resnum=1&amp;ved=0CAgQ8gEwAA">CM20 2DU</a></p>
<p><strong>Dates</strong>: Every Wednesday throughout February 2010</p>
<p><strong>Running times</strong>: 11am - 2pm</p>
<p>Check out the full range of benefits you get when you attend a <a href="http://www.26.co.uk/training/seminars">Suite26 training seminar</a>.</p>
<p>Call <strong>0845 313 0911</strong> today to book your free place or to find out more about these seminars. <strong>Don't delay</strong>, book by Friday 8th January and receive 250 FREE extra credits.</p>
<p>Please feel free to invite anyone else you know that is looking to use email marketing to help develop their business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2010/01/a-new-year-a-new-skill-learn-something-useful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE Suite26 Training Seminars</title>
		<link>http://www.26.co.uk/blog/2009/07/free-suite26-training-seminars/</link>
		<comments>http://www.26.co.uk/blog/2009/07/free-suite26-training-seminars/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 11:36:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[credits]]></category>
		<category><![CDATA[e-mail campaigns]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=72</guid>
		<description><![CDATA[Brand new free training seminars on Suite26 every Wednesday throughout September. 
Taking place at our Harlow offices, this three-hour interactive seminar is jam packed with detailed information, tips and know-how, which will equip you with everything you need to know to use email marketing to grow your business. Whether you’re an email marketing novice or expert, [...]]]></description>
			<content:encoded><![CDATA[<p>Brand new free training seminars on Suite26 every Wednesday throughout September. </p>
<p>Taking place at our Harlow offices, this three-hour interactive seminar is jam packed with detailed information, tips and know-how, which will equip you with everything you need to know to use email marketing to grow your business. Whether you’re an email marketing novice or expert, we’ll show you how Suite26 makes it quick and easy to:</p>
<p>-          Manage your email marketing campaigns.<br />
-          Create and send professional, looking personalised html emails.<br />
-          Import existing contact lists and create segmented customer groups.<br />
-          Track and analyse individual customer responses AND<br />
-          Measure campaign performance.</p>
<p>The Seminars are designed to fit in around your busy schedule and each free seminar comes with: </p>
<p>-          Helpful Tips &amp; FREE Support.<br />
-          750 FREE Email Credits (1 credit = 1 email address you send to).<br />
-          A FREE Lunch.</p>
<p>If you would like to attend one of our new Suite26 training seminars or wish find out more information, please contact us on <strong>0845 313 0911</strong> or <a href="mailto:sales@26.co.uk"><strong>sales@26.co.uk</strong></a></p>
<p><strong>Don’t delay, book your place by 7<sup>th</sup> August 2009 and receive an additional 250 free email credits</strong> on top of the 750 email credits you earn for attending. That’s potentially 1000 free email credits for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2009/07/free-suite26-training-seminars/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inserting View Online links</title>
		<link>http://www.26.co.uk/blog/2008/11/inserting-view-online-links/</link>
		<comments>http://www.26.co.uk/blog/2008/11/inserting-view-online-links/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 14:10:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[special links]]></category>
		<category><![CDATA[TEXT]]></category>
		<category><![CDATA[view online]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=19</guid>
		<description><![CDATA[It is now possible to specify which version of your e-mail campaign (TEXT or HTML) you wish the View Online link to display.
The default view online link as shown below will always take the recipient through to whichever version they received (TEXT or HTML):
[viewonline]Click here to view this e-mail in your web browser[/viewonline]
To override this [...]]]></description>
			<content:encoded><![CDATA[<p>It is now possible to specify which version of your e-mail campaign (TEXT or HTML) you wish the <a href="http://www.26.co.uk/help/how-tos/e-mail-campaigns/adding-special-links">View Online link</a> to display.</p>
<p>The default view online link as shown below will always take the recipient through to whichever version they received (TEXT or HTML):</p>
<pre>[viewonline]Click here to view this e-mail in your web browser[/viewonline]</pre>
<p>To override this default behaviour, just edit the code as show below:</p>
<pre>[viewonline:HTML]Click here for the HTML version in your web browser[/viewonline:HTML]
[viewonline:TEXT]Click here for the TEXT version in your web browser[/viewonline:TEXT]</pre>
<p>For more details please see our help article about <a href="http://www.26.co.uk/help/how-tos/e-mail-campaigns/adding-special-links">adding unsubscribe and view online links to your e-mail campaigns</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2008/11/inserting-view-online-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import campaign content from a URL</title>
		<link>http://www.26.co.uk/blog/2008/11/import-your-campaign-content-from-a-url/</link>
		<comments>http://www.26.co.uk/blog/2008/11/import-your-campaign-content-from-a-url/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 13:03:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[file manager]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=18</guid>
		<description><![CDATA[We've added a new feature into Suite26 today that allows you to import your e-mail campaign content directly from a URL.
Many of our customers have their e-mail campaigns designed by agencies which then host them online to view, whilst some customers design their campaigns in a program such as Dreamweaver and then host their on [...]]]></description>
			<content:encoded><![CDATA[<p>We've added a new feature into Suite26 today that allows you to import your e-mail campaign content directly from a URL.</p>
<p>Many of our customers have their e-mail campaigns designed by agencies which then host them online to view, whilst some customers design their campaigns in a program such as Dreamweaver and then host their on their own webspace for testing.</p>
<p>When you <a href="http://www.26.co.uk/help/how-tos/e-mail-campaigns/create-a-new-email-campaign">create a new campaign</a> with Suite26 you simply need to enter the URL where your campaign is hosted when you reach stage 3 of the add wizard:</p>
<p><img style="border: 1px solid black;" src="http://www.26.co.uk/site/img/help/campaigns/add4.png" alt="Screenshot" width="460" height="363" /></p>
<p>Suite26 will then go to that URL and get the HTML and CSS along with downloading the images into the <a href="http://www.26.co.uk/help/how-tos/using-the-file-manager">File Manager</a>.</p>
<p><img style="border: 1px solid black;" src="http://www.26.co.uk/site/img/help/campaigns/importingContent.png" alt="Screenshot" width="439" height="340" /></p>
<p>After a few seconds you should automatically have your campaign content created and fully hosted within Suite26.   The import process will even automatically create the plain text version based on the text within your campaign.</p>
<p>All you need to do is check the content, make any final adjustments or changes and you are ready to send!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2008/11/import-your-campaign-content-from-a-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FCKeditor now supported</title>
		<link>http://www.26.co.uk/blog/2008/10/fckeditor-now-supported/</link>
		<comments>http://www.26.co.uk/blog/2008/10/fckeditor-now-supported/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 10:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site News]]></category>
		<category><![CDATA[FCKeditor]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[TinyMCE]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=17</guid>
		<description><![CDATA[Suite26 now supports an alternative WYSIWYG (What You See Is What You Get) editor for creating and editing your HTML e-mail campaigns.
We now support both the existing editor, TinyMCE, and the new editor, FCKeditor, leaving you free to switch to whichever editor you find easier to use.

Above, the FCKeditor in use and below the TinyMCE [...]]]></description>
			<content:encoded><![CDATA[<p>Suite26 now supports an alternative WYSIWYG (What You See Is What You Get) editor for creating and editing your HTML e-mail campaigns.</p>
<p>We now support both the existing editor, <a href="http://tinymce.moxiecode.com/">TinyMCE</a>, and the new editor, <a href="http://www.fckeditor.net/">FCKeditor</a>, leaving you free to switch to whichever editor you find easier to use.</p>
<p><img style="border: 1px solid black;" src="http://www.26.co.uk/site/img/help/preferences/fckeditor.png" alt="FCKeditor screenshot" width="280" height="163" /></p>
<p><em>Above, the FCKeditor in use and below the TinyMCE editor.</em></p>
<p><img style="border: 1px solid black;" src="http://www.26.co.uk/site/img/help/preferences/tinymce.png" alt="TinyMCE screenshot" width="280" height="162" /></p>
<p>For current users of Suite26 you will find that we have left the default WYSIWYG set to TinyMCE to avoid confusion.  New users of Suite26 will have FCKeditor set as the default.</p>
<p>To switch to the editor your prefer, or to disable the editor completely, just click on the Options tab and then Preferences.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2008/10/fckeditor-now-supported/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Built-in WYSIWYG editor &amp; link tracking</title>
		<link>http://www.26.co.uk/blog/2008/09/built-in-wysiwyg-editor-link-tracking/</link>
		<comments>http://www.26.co.uk/blog/2008/09/built-in-wysiwyg-editor-link-tracking/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 16:25:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[clicks]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[tracking]]></category>
		<category><![CDATA[WYSIWYG]]></category>

		<guid isPermaLink="false">http://www.26.co.uk/blog/?p=9</guid>
		<description><![CDATA[We'd like to start by saying thank you to everybody who has contacted us recently with suggestions of features they would like to see implemented into Suite26.  Please keep them coming to suggestions@26.co.uk
From this feedback we would like to announce two small new features which may be useful in some circumstances.
Disable WYSIWYG Editor:
Some users design [...]]]></description>
			<content:encoded><![CDATA[<p>We'd like to start by saying thank you to everybody who has contacted us recently with suggestions of features they would like to see implemented into Suite26.  Please keep them coming to <a href="mailto:suggestions@26.co.uk">suggestions@26.co.uk</a></p>
<p>From this feedback we would like to announce two small new features which may be useful in some circumstances.</p>
<p><strong>Disable WYSIWYG Editor:</strong></p>
<p>Some users design their e-mail templates in their favourite design program (Dreamweaver etc) and host the images for their mailer on their own servers.  In these cases it may be desirable to bypass the built-in WYSIWYG editor functionality. </p>
<p>To turn off the WYSIWYG you will need to click on the Options tab, then Preferences and tick the Disable WYSIWYG Editor checkbox. With the editor disabled you will simply be provided with a standard text box to paste your HTML code into.</p>
<p><strong>Disable Link Tracking:</strong></p>
<p><a href="http://www.26.co.uk">Suite26</a> has always had the ability to turn tracking (opens &amp; clicks) off on a per e-mail basis (available from the Send Campaign wizard), but it is now possible to disable tracking for a specific link within a campaign.</p>
<p>You may want to do this if you have a link which you wish to insert personalised information into (such as a membership number or e-mail address).  To disable tracking for a specific link you will need to switch the WYSIWYG editor into HTML code view and edit the link to add so that it contains <strong>rel="s26-no-track"</strong> - your link should look like this:</p>
<p>&lt;a rel="s26-no-track" href="http://www.mylinkhere.com/mylink.html"&gt;</p>
<p>If you require any help with these new features or need further information, please e-mail <a href="mailto:support@26.co.uk">support@26.co.uk</a> and we will be happy to assist.</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.26.co.uk/blog/2008/09/built-in-wysiwyg-editor-link-tracking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

