<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: some simple cl-smtp examples</title>
	<atom:link href="http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/</link>
	<description>mostly tech, mostly rants</description>
	<lastBuildDate>Tue, 07 Feb 2012 18:44:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Russ&#8217;s Tech Blog &#187; Blog Archive &#187; Sending HTML Email with attachments in Common Lisp</title>
		<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/comment-page-1/#comment-21589</link>
		<dc:creator>Russ&#8217;s Tech Blog &#187; Blog Archive &#187; Sending HTML Email with attachments in Common Lisp</dc:creator>
		<pubDate>Mon, 23 Mar 2009 15:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://ryepup.unwashedmeme.com/blog/?p=104#comment-21589</guid>
		<description>[...] Ryepup gave us a great couple of simple examples for CL-SMTP.  Unfortunately when I tried to combine them to send an HTML email that had an attachment, I did not get the expected results.  Instead, we insert an inappropriate ContentType header above the multipart then the message body has content type text/plain.  I saw Leslie Polzer&#8217;s comment about a BKNR branch of cl-smtp that handled mime-types better.  So I downloaded it, fired it up, bound the content-type variable and it almost produced the correct email.  Unfortunately the result email was missing a newline after the header so my client skipped displaying this first email part (assuming it to be part of the header).  I submitted a patch, that was accepted, that adds the newline after the multipart message header. [...]</description>
		<content:encoded><![CDATA[<p>[...] Ryepup gave us a great couple of simple examples for CL-SMTP.  Unfortunately when I tried to combine them to send an HTML email that had an attachment, I did not get the expected results.  Instead, we insert an inappropriate ContentType header above the multipart then the message body has content type text/plain.  I saw Leslie Polzer&#8217;s comment about a BKNR branch of cl-smtp that handled mime-types better.  So I downloaded it, fired it up, bound the content-type variable and it almost produced the correct email.  Unfortunately the result email was missing a newline after the header so my client skipped displaying this first email part (assuming it to be part of the header).  I submitted a patch, that was accepted, that adds the newline after the multipart message header. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JC</title>
		<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/comment-page-1/#comment-14732</link>
		<dc:creator>JC</dc:creator>
		<pubDate>Wed, 05 Nov 2008 22:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://ryepup.unwashedmeme.com/blog/?p=104#comment-14732</guid>
		<description>AFAIK, all cl-smtp(old, new, forked, etc) implementation do not handle encoding subject and content correctly(or hard to use). In my mind, the correct implementation should use Flexi stream to deal with different encodings for the content at least</description>
		<content:encoded><![CDATA[<p>AFAIK, all cl-smtp(old, new, forked, etc) implementation do not handle encoding subject and content correctly(or hard to use). In my mind, the correct implementation should use Flexi stream to deal with different encodings for the content at least</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Victor</title>
		<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/comment-page-1/#comment-14677</link>
		<dc:creator>Victor</dc:creator>
		<pubDate>Mon, 03 Nov 2008 13:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://ryepup.unwashedmeme.com/blog/?p=104#comment-14677</guid>
		<description>This tip could be contributed to the &quot;Common Lisp&quot; Wikibook, section &quot;Libraries&quot;.</description>
		<content:encoded><![CDATA[<p>This tip could be contributed to the &#8220;Common Lisp&#8221; Wikibook, section &#8220;Libraries&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alejandro Atienza Ramos</title>
		<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/comment-page-1/#comment-14660</link>
		<dc:creator>Alejandro Atienza Ramos</dc:creator>
		<pubDate>Sun, 02 Nov 2008 22:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://ryepup.unwashedmeme.com/blog/?p=104#comment-14660</guid>
		<description>It would be perfect to complement it with how to download mail from the same email account, although, obviously, not with smtp...</description>
		<content:encoded><![CDATA[<p>It would be perfect to complement it with how to download mail from the same email account, although, obviously, not with smtp&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leslie P. Polzer</title>
		<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/comment-page-1/#comment-14614</link>
		<dc:creator>Leslie P. Polzer</dc:creator>
		<pubDate>Sat, 01 Nov 2008 08:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://ryepup.unwashedmeme.com/blog/?p=104#comment-14614</guid>
		<description>Hans&#039; BKNR branch of CL-SMTP has some additional MIME attachment features:

  http://bknr.net/trac/browser/trunk/thirdparty/cl-smtp/

And here&#039;s an utility library for sending UTF-8 mail:

   http://groups.google.com/group/cl-terrace/web/trivial-email-utf-8

Cheers,

  Leslie</description>
		<content:encoded><![CDATA[<p>Hans&#8217; BKNR branch of CL-SMTP has some additional MIME attachment features:</p>
<p>  <a href="http://bknr.net/trac/browser/trunk/thirdparty/cl-smtp/" rel="nofollow">http://bknr.net/trac/browser/trunk/thirdparty/cl-smtp/</a></p>
<p>And here&#8217;s an utility library for sending UTF-8 mail:</p>
<p>   <a href="http://groups.google.com/group/cl-terrace/web/trivial-email-utf-8" rel="nofollow">http://groups.google.com/group/cl-terrace/web/trivial-email-utf-8</a></p>
<p>Cheers,</p>
<p>  Leslie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boomer</title>
		<link>http://ryepup.unwashedmeme.com/blog/2008/10/31/some-simple-cl-smtp-examples/comment-page-1/#comment-14604</link>
		<dc:creator>Boomer</dc:creator>
		<pubDate>Fri, 31 Oct 2008 16:47:01 +0000</pubDate>
		<guid isPermaLink="false">http://ryepup.unwashedmeme.com/blog/?p=104#comment-14604</guid>
		<description>Thanks! I&#039;ve been googling for something like this. Your timing is perfect.</description>
		<content:encoded><![CDATA[<p>Thanks! I&#8217;ve been googling for something like this. Your timing is perfect.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.808 seconds -->

