<?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>Little Known Software &#187; Tutorial</title>
	<atom:link href="http://www.littleknownsoftware.com/blog/category/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littleknownsoftware.com/blog</link>
	<description>Even the little utilities help.</description>
	<lastBuildDate>Mon, 17 May 2010 21:36:48 +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>Calling Scripts from Signatures</title>
		<link>http://www.littleknownsoftware.com/blog/2007/04/calling-scripts-from-signatures/</link>
		<comments>http://www.littleknownsoftware.com/blog/2007/04/calling-scripts-from-signatures/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 15:02:48 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[sigpro]]></category>

		<guid isPermaLink="false">http://lkblog/2007/04/calling-scripts-from-signatures/</guid>
		<description><![CDATA[Many users will find this new feature of SignatureProfiler very exciting. It allows you to interject any data that you can get in text form from any command line into a signature. You could easily incorporate iChat status, uptime count, random quote from a database, etc into you signatures. In addition any standard SignatureProfiler placeholders [...]]]></description>
			<content:encoded><![CDATA[<p>Many users will find this new feature of <span class="product-name">SignatureProfiler</span> very exciting. It allows you to interject any data that you can get in text form from any command line into a signature. You could easily incorporate iChat status, uptime count, random quote from a database, etc into you signatures. In addition any standard <span class="product-name">SignatureProfiler</span> placeholders will be replaced <strong>after</strong> the script contents are inserted into the signature, so in truth a single signature calling a script can be as dynamic as you are inside that script.</p>
<p>Adding a script to a signature is quite simple. Go into the Signature preference pane and select the signature that you want to change. Form there, you can either right-click (or control-click) choose <strong>SigPro Replacements</strong> and then at the bottom, you&#8217;ll see <strong>Add Script…</strong>. Selecting this will bring up an open dialog box, from which you can choose any type of file. Find your script and select it. It will be added to the signature in the form:</p>
<ul>
<li> {script:&#8217;/Path/to/my/script.scpt&#8217;}</li>
</ul>
<p>As usual, you can enter this entire text yourself without using the menu, but it makes it a little easier. You should use some sort of delimiters around the path though, where the open and close are the same. Any of these characters can be used (as long as the same character is not in the path) [\"'|!@#$%^&amp;*-=_+,.?/\ ]. In addition, any formatting applied to the placeholder will be applied to the resulting string as well.</p>
<p>You can use any scripting language that you like. If the file is a <em>.scpt</em> or <em>.applescript</em> file, then it will be interpreted and run as an applescript. In <strong>all</strong> other cases the script will be run as an executable shell file, so you must ensure that it can be run this way or you will get errors in your results. So you can easily use perl, shell, or even ruby if you wish.</p>
<p>As mentioned above, any of the normal placeholders that you can use in signatures can be put inside the script and they should be replaced as normal. The only exception to this is a script placeholder for obvious problems of recursion.</p>
<p>The results of the script are always inserted as html, so you should use &lt;/br&gt; as line breaks. A simple carriage return will not do anything. But this also gives you the ability to control the output pretty well.</p>
<p>To all those who contributed this idea, thanks very much. Let me know what you think and if there are parts that are not implemented how you would like.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littleknownsoftware.com/blog/2007/04/calling-scripts-from-signatures/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using the New Random Quote Feature</title>
		<link>http://www.littleknownsoftware.com/blog/2007/04/using-the-new-random-quote-feature/</link>
		<comments>http://www.littleknownsoftware.com/blog/2007/04/using-the-new-random-quote-feature/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 19:17:09 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://lkblog/2007/04/using-the-new-random-quote-feature/</guid>
		<description><![CDATA[With the release of version 1.4.2, you now have the ability to create a simple text file that can be used as a source of random quotations to be incorporated into your signatures. Once you have created this file you can simply insert a simple {random.quote} placeholder into your signature to have it pick one [...]]]></description>
			<content:encoded><![CDATA[<p>With the release of version 1.4.2, you now have the ability to create a simple text file that can be used as a source of random quotations to be incorporated into your signatures. Once you have created this file you can simply insert a simple {random.quote} placeholder into your signature to have it pick one for you. In addition, you can associate an author and a citation/source to that quote to be inserted separately. Read on for more details and some examples.</p>
<p>The main emphasis of this update of <span class="product-name">SignatureProfiler</span> is to include access directly from a signature to scripts so that users who have a built up set of quotations in a database or who want to include some information about the status of their machine could do this. However, since I know that not all users are adapt at writing applescripts or perl scripts or some other kind, I thought I would also provide a simple capability to create a simple list of quotations, with authors and citations, that anyone could create and use. To see more about the script access capabilities in this version, see the post <a href="/2007/04/calling-scripts-from-signatures">Calling Scripts from Signatures</a>.</p>
<p>Ok, so how does a user create and add her quotation list file? Simple. In the <strong>iTunes &amp; Quotes</strong> (previously just iTunes) tab in the <span class="product-name">SignatureProfiler</span> preferences pane, the bottom half allows you to designate the file that you would like to use as your quote list file. One the file has been chosen, it will display the quotations in the bottom table, but you cannot yet edit them here. They are just for display to so that you can verify that it actually read the file correctly.</p>
<p><img class="aligncenter size-full wp-image-118" title="MailScreenSnapz007" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz007.jpg" alt="MailScreenSnapz007" /></p>
<p>So then, now you just have to create a text file. Each quotation should be on a single line, but it can also have an author and a citation or source to go along with it. The author and citation should be separated from the quote by a <span style="text-decoration: line-through;">semi-</span> colon (:). If your quotation, author or citation has a <span style="text-decoration: line-through;">semi-</span> colon within it you must delimit that piece with some kind of character from this list ( \&#8221;&#8216;|!@#$%^&amp;*-=_+,.?/\ ) (the last one is a space!). You can always use these characters for delimiters, but you <strong>must</strong> if your text has a <span style="text-decoration: line-through;">semi-</span> colon.</p>
<p>Create you file as a simple text file in program like TextEdit or BBEdit and save it wherever you like. Then from with the above mentioned <strong>iTunes &amp; Quotes</strong> tab of the preferences pane, select that file.</p>
<p>So, here are a couple of examples of what some lines from this file might look like. These examples are from the same file as you see in the image above. (Note that each of these is on a single line in the text file)</p>
<ul>
<li>Quick to judge, quick to anger, slow to understand, ignorance and prejudice and fear walk hand in hand:Neil Peart:Witch Hunt</li>
<li>&#8220;Life is like a box of chocolates, you never know what you&#8217;ll get&#8221;::Forrest Gump</li>
<li>Where&#8217;s the beef!?</li>
<li>Life, liberty and the pursuit of happiness::Declaration of Independence|Are we &#8216;green&#8217;?|:Ruby Rhod:The 5th Element</li>
</ul>
<p>So now how can this information be used inside of a signature? Three new placeholders have been added, which you can also access from the placeholder menu in the Signature&#8217;s preference pane. They are:</p>
<ul>
<li>{random.quote}</li>
<li>{random.quote.author}</li>
<li>{random.quote.citation}</li>
</ul>
<p>The first will be replaced by the actual quotation, the second, by the author, if one was indicated for that quote and the last is the citation or source, also <em>if</em> one was indicated. So if you have a signature that looks like this:</p>
<p><img class="aligncenter size-full wp-image-118" title="Signature with random quote" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz003.jpg" alt="Signature with random quote" /></p>
<p>You would get these three as possible outcomes from the file listed above:<br />
<img class="aligncenter size-full wp-image-118" title="Random Example 1" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz009-1.jpg" alt="Random Example 1" /><br />
<img class="aligncenter size-full wp-image-118" title="Random Example 2" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz010-1.jpg" alt="Random Example 2" /><br />
<img class="aligncenter size-full wp-image-118" title="Random Example 3" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz008-1.jpg" alt="Random Example 3" /><br />
One thing to note in the last example, the text &#8221; &#8211; in &#8221; is placed into the signature as well, despite not having any author or citation. This is because it is in the actual signature above. So you might want to consider this when creating your signature and signature file. If the signature itself was something like this instead:</p>
<ul>
<li>{random.quote} {random.quote.author} {random.quote.citation}</li>
</ul>
<p>Then I could put the relevant text into the file list, maybe like this:</p>
<ul>
<li>&#8216;&#8221;Quick to judge, quick to anger, slow to understand, ignorance and prejudice and fear walk hand in hand&#8221;&#8216;:by Neil Peart:from the song &lt;i&gt;Witch Hunt&lt;/i&gt;</li>
<li>|&#8221;Life is like a box of chocolates, you never know what you&#8217;ll get&#8221;|::in Forrest Gump</li>
<li>Where&#8217;s the beef!?</li>
<li>Life, liberty and the pursuit of happiness::&#8217;- Declaration of Independence&#8217;|Are we &#8216;green&#8217;?|:Ruby Rhod:The 5th Element</li>
</ul>
<p>When you do this though, be sure to use some delimiters to ensure that the full string is interpreted correctly. For example since the dash (-) is normally seen as a delimiter, if you start a citation or author with that, you should use some other delimiter character around the entire part.</p>
<p>I hope that this was helpful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littleknownsoftware.com/blog/2007/04/using-the-new-random-quote-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the iTunes Integration with SignatureProfiler</title>
		<link>http://www.littleknownsoftware.com/blog/2006/11/using-the-itunes-integration-with-signatureprofiler/</link>
		<comments>http://www.littleknownsoftware.com/blog/2006/11/using-the-itunes-integration-with-signatureprofiler/#comments</comments>
		<pubDate>Sun, 05 Nov 2006 19:14:27 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[sigpro]]></category>

		<guid isPermaLink="false">http://lkblog/2006/11/using-the-itunes-integration-with-signatureprofiler/</guid>
		<description><![CDATA[Although the iTunes integration into signatures is a rather frivolous need, it&#8217;s one of the original things that I had wanted to do. After all, we Mac users like to share stuff right? There used to be an even cooler shareware tool that would create an image and upload the image to a server even [...]]]></description>
			<content:encoded><![CDATA[<p>Although the iTunes integration into signatures is a rather frivolous need, it&#8217;s one of the original things that I had wanted to do. After all, we Mac users like to share stuff right? There used to be an even cooler shareware tool that would create an image and upload the image to a server even few minutes of what was playing in iTunes. Then you could link to that image in an email or web site or whatever. I liked that very much and thought it was cool, but they could no longer support the server so the service disappeared. That program (whose name I unfortunately can&#8217;t remember) was better because it <strong>always</strong> showed the current status. I had to settle for showing what is playing when the message is sent.<br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz008.png" alt="Example iTunes Signature" title="Example iTunes Signature" class="aligncenter size-full wp-image-121" /><br />
Anyway, below the fold are some examples of how these signatures can be used and a couple of gotchas to look out for and avoid.</p>
<p>The first thing to get straight when using the iTunes functionality is that there are one set of placeholders that strictly fill in data from iTunes whatever its status. The three placeholders:</p>
<ul>
<li>{itunes.playing.song}</li>
<li>{itunes.playing.album}</li>
<li>{itunes.playing.artist}</li>
</ul>
<p>will be replaced with empty strings if iTunes is stopped or not running. This is why the {itunes.display.info} placeholder exists. This allows you to choose four different, but complete signatures to use for each of the states of iTunes (the four states are &#8220;Playing&#8221;, &#8220;Paused&#8221;, &#8220;Stopped&#8221; and &#8220;Not Loaded&#8221;. This way you can decide that for all states but playing, you&#8217;ll have &#8220;None&#8221; as the signature for the info placeholder. Then when iTunes is in the three other states that placeholder will be replaced with an empty string.</p>
<p>But it also let&#8217;s you designate more meaningful signatures for each of the states if you wish. Say, we create four signatures like these:<br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz009.png" alt="iTunes Playing Signature" title="iTunes Playing Signature" class="aligncenter size-full" /><br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz011.png" alt="iTunes Paused Signature" title="iTunes Paused Signature" class="aligncenter size-full" /><br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz010.png" alt="iTunes Stopped Signature" title="iTunes Stopped Signature" class="aligncenter size-full" /><br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz012-1.png" alt="iTunes Not Running Signature" title="iTunes Not Running Signature" class="aligncenter size-full" /><br />
In the iTunes tab of <span class="product-name">SignatureProfiler</span>&#8217;s preference pane, we&#8217;ll set the different signatures for the four states. Assume that we&#8217;ll assign the top-left signature, to the iTunes State of &#8220;Playing&#8221;, the top-right to &#8220;Paused&#8221;, the bottom-left to &#8220;Stopped&#8221; and the bottom-right to &#8220;Not Loaded&#8221;. To set these, choose the state you want to set from the top menu and then pick the signature that you would have created in the bottom menu.<br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz013-1.png" alt="Choosing iTunes Signature" title="Choosing iTunes Signature" class="aligncenter size-full" /><br />
Then once you compose a message and select a signature that uses the {itunes.display.info} placeholder, you&#8217;ll get the correct version of the iTunes signature displaying in your signature. Here are what my four look like.<br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz018.png" alt="iTunes Playing Example" title="iTunes Playing Example" class="aligncenter size-full" /><br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz015.png" alt="iTunes Paused Example" title="iTunes Paused Example" class="aligncenter size-full" /><br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz016.png" alt="iTunes Stopped Example" title="iTunes Stopped Example" class="aligncenter size-full" /><br />
<img src="/blog/wp-content/uploads/2009/12/MailScreenSnapz017.png" alt="iTunes Not Loaded Example" title="iTunes Not Loaded Example" class="aligncenter size-full" /><br />
Hope that you enjoy it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littleknownsoftware.com/blog/2006/11/using-the-itunes-integration-with-signatureprofiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inserting Link and Image Placeholders</title>
		<link>http://www.littleknownsoftware.com/blog/2006/11/inserting-link-and-image-placeholders/</link>
		<comments>http://www.littleknownsoftware.com/blog/2006/11/inserting-link-and-image-placeholders/#comments</comments>
		<pubDate>Sun, 05 Nov 2006 19:01:12 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://lkblog/2006/11/inserting-link-and-image-placeholders/</guid>
		<description><![CDATA[The addition of these two placeholders facilitates the inclusion and editing of images and hyperlinks in a signature. Although the current Signature preferences pane does offer the ability to insert a hyperlink, it&#8217;s not as obvious as it should be how to properly format it and editing it is even worse and very error prone. [...]]]></description>
			<content:encoded><![CDATA[<p>The addition of these two placeholders facilitates the inclusion and editing of images and hyperlinks in a signature. Although the current Signature preferences pane does offer the ability to insert a hyperlink, it&#8217;s not as obvious as it should be how to properly format it and editing it is even worse and very error prone. Although the solution that <span class="product-name">SignatureProfiler</span> provides is not perfect, it seems better to me. I hope to improve it even more in the future.</p>
<p>In order to put a hyperlink or image link into the signature, you simply need to control-click (or right-click) in the signature pane where you want to insert the link. Note that sometime the editor is a little vague about selection when you control-click, so give it a try first to see how it behaves. The menu that you see looks like this:<br />
<img class="aligncenter size-full wp-image-118" title="SignatureProfiler Context Menu" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz001.png" alt="SignatureProfiler Context Menu" /><br />
The last two items in that menu are the ones that we&#8217;ll look at. When either is selected, you&#8217;ll get an sheet that looks like the one below. Note that the only difference will be that one has text for links and the other for images. The fields are essentially the same however.<br />
<img class="aligncenter size-full wp-image-118" title="Link or Image Entry Sheet" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz003-1.png" alt="Link or Image Entry Sheet" /><br />
The URL for the image or link indicates where to go an get the information. This should be a valid, reachable URL. No checking will be done at the time of entry to ensure that the link is valid. &#8220;Description&#8221; is the text that will be shown in the case of a hyperlink and is the descriptive text of an image. It is optional for an image.</p>
<p>After you hit the &#8220;Insert&#8221; button, the text that is entered into the signature looks less than friendly I must admit, but if you stick to editing just the link or description, you should be fine. Here is an example with both a link and an image inserted:<br />
<img class="aligncenter size-full wp-image-118" title="Link &amp; Image Example" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz006.png" alt="Link &amp; Image Example" /><br />
Another pointer for editing: if you want to change the formatting of a link, be sure to select the entire placeholder. Do not select part of the placeholder and apply formatting to it, this will break <span class="product-name">SignatureProfiler</span>&#8217;s ability to find the placeholder properly.</p>
<p>Also, be aware that often Mail will not load the image correctly in the message compose window. You will see the standard icon indicating that an image cannot be loaded (<br />
<img class="size-full wp-image-118" title="Missing Image Icon" src="/blog/wp-content/uploads/2009/12/MailScreenSnapz007.png" alt="Missing Image Icon" />). However, the image will be seen by the recipient if they don&#8217;t have thier client set to not retrieve images. do a test by sending yourself a mail first. You will also notice that the preview of tail signatures in the <span class="product-name">SignatureProfiler</span> preference pane doesn&#8217;t represent these properly. It is not yet capable of displaying HTML, that will come in a later version.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littleknownsoftware.com/blog/2006/11/inserting-link-and-image-placeholders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Tail Signatures</title>
		<link>http://www.littleknownsoftware.com/blog/2006/11/using-tail-signatures/</link>
		<comments>http://www.littleknownsoftware.com/blog/2006/11/using-tail-signatures/#comments</comments>
		<pubDate>Sun, 05 Nov 2006 18:45:25 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[sigpro]]></category>
		<category><![CDATA[tail signature]]></category>

		<guid isPermaLink="false">http://lkblog/2006/11/using-tail-signatures/</guid>
		<description><![CDATA[You might be wondering how to best utilize the Tail Signature feature of SignatureProfiler. I&#8217;ll give an example here that will hopefully make this feature clear. It isn&#8217;t really complicated, but examples are always good to see to give a good idea.
Tail signatures can include all of the other placeholders that SignatureProfiler provides, except for [...]]]></description>
			<content:encoded><![CDATA[<p>You might be wondering how to best utilize the Tail Signature feature of <span class="product-name">SignatureProfiler</span>. I&#8217;ll give an example here that will hopefully make this feature clear. It isn&#8217;t really complicated, but examples are always good to see to give a good idea.</p>
<p>Tail signatures can include all of the other placeholders that <span class="product-name">SignatureProfiler</span> provides, except for the tail signature placeholder itself. If that placeholder exists within a signature that you use as a tail signature, it will be replaced with an empty string to avoid a loop.</p>
<p>For our example here we&#8217;ll start with the tail signature for our example. Let&#8217;s assume that the Account that we will use actually has two email addresses attached to it (joe.shmoe@littleknownsoftware.com and john.doe@littleknownsoftware.com) and that we have set one to use the tail signature of the Account, but the Joe Schmoe uses a different tail signature. The configuration for this looks like this:<br />
<img title="Account Setup" src="/blog/wp-content/uploads/2009/12/Picture-1-1.png" border="0" alt="Account Setup" class="aligncenter size-full" /><br />
We can see that the tail for John Doe has been set to use that of the account. We can&#8217;t see the other in the image, but it is set to use &#8220;Display Tail 2&#8243;. With the original &#8220;Display Tail&#8221; signature looks like this:<br />
<img title="Example Tail Signature" src="/blog/wp-content/uploads/2009/12/Picture-3.png" border="0" alt="Example Tail Signature"  class="aligncenter size-full" /><br />
You can see that in the Account configuration screen the tail example is udated to show what it will look like. Note that the user name is replaced as John Doe, however the user name of the account (entered in the Accounts preference pane) is set to &#8220;Display Account&#8221;. The &#8220;Name for Selected Address:&#8221; field allows us to override the Account settings for each email address if desired.</p>
<p>Okay, so now let&#8217;s look at a couple of example signatures for this account and see what the results will be. Here is the first signature as it appears in the Signatures preference pane.<br />
<img title="Example Signature 1" src="/blog/wp-content/uploads/2009/12/SignatureOne.png" border="0" alt="Example Signature 1" class="aligncenter size-full" /><br />
And here you see the resulting mail with the values replaced. Note that the menu for choosing the address to send from shows the Account name (Display Account) and the email address (john.doe@littleknownsoftware.com). However, you&#8217;ll see that the replacements are relevant to the email address, with the user name being &#8220;John Doe&#8221; instead of &#8220;Display Account&#8221;, as was configured in the <span class="product-name">SignatureProfiler</span> preference pane above.<br />
<img title="Replaced Signature" src="/blog/wp-content/uploads/2009/12/ReplacedSigOne.png" border="0" alt="Replaced Signature" class="aligncenter size-full" /><br />
As another example, if we start with this tail:<br />
<img title="Second Tail Signature" src="/blog/wp-content/uploads/2009/12/TailExampleTwo.png" border="0" alt="Second Tail Signature"  class="aligncenter size-full" /><br />
We will get, for the same original signature chosen in the mail composer screen, a message that looks like this, having chosen the joe.schmoe email address:<br />
<img title="Mail Example Two" src="/blog/wp-content/uploads/2009/12/MailExampleTwo.png" border="0" alt="Mail Example Two" class="aligncenter size-full" /><br />
That&#8217;s about it really. Next I&#8217;ll do an example using the image and link replacements to show how those are used and why they are somewhat easier to use than the &#8220;Add Hyperlink…&#8221; menu item in the Signature preferences pane.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littleknownsoftware.com/blog/2006/11/using-tail-signatures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding HTML directly to your signature</title>
		<link>http://www.littleknownsoftware.com/blog/2006/11/adding-html-directly-to-your-signature/</link>
		<comments>http://www.littleknownsoftware.com/blog/2006/11/adding-html-directly-to-your-signature/#comments</comments>
		<pubDate>Sun, 05 Nov 2006 18:40:09 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mail]]></category>

		<guid isPermaLink="false">http://lkblog/2006/11/adding-html-directly-to-your-signature/</guid>
		<description><![CDATA[With version 1.3 of SignatureProfiler, you can now insert HTML and Web Archive files directly into your signatures through the Signature Preferences pane. Although the process of adding the file is simple, there are some basic things you should know before you try this. See below the fold for more information.
Melvin Rivera has written a [...]]]></description>
			<content:encoded><![CDATA[<p>With version <a href="/sigpro">1.3</a> of <span class="product-name">SignatureProfiler</span>, you can now insert HTML and Web Archive files directly into your signatures through the Signature Preferences pane. Although the process of adding the file is simple, there are some basic things you should know before you try this. See below the fold for more information.</p>
<p>Melvin Rivera has <a href="http://allforces.com/2006/04/14/css-signatures/">written a tutorial</a> about how to insert HTML with CSS into Mail and the problems concerning the format to use. Much of that article is obsolete now with <span class="product-name">SignatureProfiler</span>, however the update where he describes the way to make a CSS signature work the best is very relevant (even necessary) here.</p>
<p>To sum up his points:</p>
<ul>
<li>Do not include a CSS style sheet</li>
<li>Use DIV tags instead of HTML, HEAD or BODY</li>
<li>All CSS styles should be inline</li>
<li>The styles should even be attached directly to the tag, no classes</li>
<li>Do not put any image URLs in backgrounds</li>
</ul>
<p>This will ensure that your HTML can be seen by as many clients as possible. He has a nice example starting point HTML file that he has posted for you to see how that can be done. Here is what it looks like.</p>
<p><img class="aligncenter size-full wp-image-134" title="Example of Signature" src="/blog/wp-content/uploads/2009/12/RiveraSignature.png" alt="Example of Signature" /></p>
<p>In a later version of <span class="product-name">SignatureProfiler</span>, I hope to include a simpler way to do this type of thing for those who don&#8217;t want to learn CSS/HTML. For the moment though you can at least put these in.</p>
<p class="lk_note">Remember that even if you create perfect HTML code and it looks great when you send it, the client that receives the mail may be set to not show HTML or not to load images. It is a good idea to think of this when creating your signature, to be sure that as plain text it will still be, at least, readable!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.littleknownsoftware.com/blog/2006/11/adding-html-directly-to-your-signature/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
