Delphi SMTP component that supports UTF-8 or Unicode - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:54:51Z http://stackoverflow.com/feeds/question/495619 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode 1 Delphi SMTP component that supports UTF-8 or Unicode Toby Allen 2009-01-30T14:15:38Z 2009-06-01T18:41:58Z <p>It <a href="https://forums.codegear.com/thread.jspa?messageID=43720" rel="nofollow">appears</a> the Indy 10 SMTP component shipped with Delphi 2009 do not properly support unicode in the subject and body. </p> <p>Does anyone know of a good alternative, or has anyone made the necessary changes to Indy10 to solve this issue?</p> <p>Update: Thanks for all the answers, I've done a bit of investigation, and thought I might be able to solve the issue by sending unicode chars in the HTML section of an email. Anyone any opinions on whether that will do the trick?</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/496142#496142 1 Answer by Darian Miller for Delphi SMTP component that supports UTF-8 or Unicode Darian Miller 2009-01-30T16:28:09Z 2009-01-30T16:28:09Z <p>I would definitely look at IPWorks from nSoftware.com. Their latest version is supposed to be fully Delphi 2009 compliant.</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/496169#496169 2 Answer by Darian Miller for Delphi SMTP component that supports UTF-8 or Unicode Darian Miller 2009-01-30T16:34:45Z 2009-01-30T16:34:45Z <p>I would also note that most mail servers may not handle Unicode properly in the mail subject line. I haven't seen any real statistics on this, but my guess is that a very healthy percentage of mail servers still expect ascii subject lines as I believe that's what the RFC's define.</p> <p>(The message body can of course be encoded to ensure it goes through.)</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/496429#496429 0 Answer by skamradt for Delphi SMTP component that supports UTF-8 or Unicode skamradt 2009-01-30T17:33:32Z 2009-01-30T17:33:32Z <p>I would look at <a href="http://synapse.ararat.cz/doku.php/download" rel="nofollow">Synapse</a> which does properly handle unicode in the subject and body. You will need to download the repository via the <a href="https://synalist.svn.sourceforge.net/svnroot/synalist/trunk/" rel="nofollow">SVN</a> repository, which is more up to date than the version listed for download on the website. The SVN version includes support for Delphi 2009.</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/498295#498295 1 Answer by Darian Miller for Delphi SMTP component that supports UTF-8 or Unicode Darian Miller 2009-01-31T04:51:09Z 2009-01-31T04:51:09Z <p>EasyMail says it supports RFC 2047 which Rob mentioned as handling non-ascii subject lines:</p> <p><a href="http://www.componentsource.com/products/easymail-objects/summary.html" rel="nofollow">http://www.componentsource.com/products/easymail-objects/summary.html</a></p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/501996#501996 0 Answer by Remy Lebeau for Delphi SMTP component that supports UTF-8 or Unicode Remy Lebeau 2009-02-02T01:43:49Z 2009-02-02T01:43:49Z <p>A bug was recently discovered in Indy 10's IdHeaderoderUTF class that would prevent UTF-7 and UTF-8 from working properly when encoding email headers that have Unicode characters in them.</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/516598#516598 -1 Answer by Toby Allen for Delphi SMTP component that supports UTF-8 or Unicode Toby Allen 2009-02-05T16:15:50Z 2009-02-05T16:15:50Z <p>Thanks to everyone for the suggestions, I think I've found a component that really works. Its an ActiveX rather than Delphi component, but does the trick. Nice and simple.</p> <p>The component is The <a href="http://www.chilkatsoft.com/email-activex.asp" rel="nofollow">Chilkat SMTP component</a> . The <a href="http://www.example-code.com/delphi/delphi-japanese-email.asp" rel="nofollow">code example here</a> does exactly what I want and it works!!!</p> http://stackoverflow.com/questions/495619/delphi-smtp-component-that-supports-utf-8-or-unicode/936152#936152 1 Answer by Remy Lebeau - TeamB for Delphi SMTP component that supports UTF-8 or Unicode Remy Lebeau - TeamB 2009-06-01T18:41:58Z 2009-06-01T18:41:58Z <p>Indy 10 has been updated since D2009's initial release to handle Unicode better now. Have a look at the current Tiburon snapshot in Indy's SVN.</p>