Re: [twsocket] TSmtpCli in library: how to process events?

2012-10-10 Thread Arno Garrels
Ronald Wilmink wrote: > I have used the TSmtpCli component in applications without any > problems. But now, I need to use it in a service that calls a > function in a dll that has no Form, just units. > That function needs to send emails. > Since the component works with events that are not availab

Re: [twsocket] TSmtpCli Questions

2012-06-27 Thread Angus Robertson - Magenta Systems Ltd
> I am using a delphi 7 TRichedit box and using the code > Smtpcli.MailMessage := editor.lines where editor is the Richedit. You need to set the PlainText property to false to read rich text into a stream or file, don't know about use of Lines.Text, not mentioned in the help. Use the debugger to

Re: [twsocket] TSmtpCli Questions

2012-06-26 Thread Angus Robertson - Magenta Systems Ltd
> 1. I have a richedit box hat I have formatted text in > Smtpcli.MailMessage := editor.lines; I have noticed that none of > the formatting is carried across to the sent email How are you extracting the text from the richedit control, with which method? To maintain RTF formatting, you also nee

Re: [twsocket] TsmtpCli with SSL

2012-02-21 Thread François Piette
>> Does the TSmtpCli support ports other than 25? >No, only TSslSmtpCli supports SSL/TLS. >Including SSL/TLS connections or method/command STARTTLS on any port number you want. Just to clarify Arno's answer: If you need to send Emails with SMTP over SSL/TLS link, you need the SSL enabled versio

Re: [twsocket] TsmtpCli with SSL

2012-02-21 Thread Arno Garrels
Dimos Vlachavas wrote: > Does the TSmtpCli support ports other than 25? No, only TSslSmtpCli supports SSL/TLS. Including SSL/TLS connections or method/command STARTTLS on any port number you want. -- Arno Garrels -- To unsubscribe or change your settings for TWSocket mailing list please goto h

Re: [twsocket] TSmtpCli and bad spam score

2010-09-05 Thread Fabrice Vendé
Le 03/09/2010 23:03, DZ-Jay a écrit : Fabrice, I do not have Delphi available at this moment, so could you test the code below to see if it is treated as spam by SpamAssassin? Hello, There is a tools to check SpamAssassin score here : http://www.mailingcheck.com/ Best regards, - Fabrice

Re: [twsocket] TSmtpCli and bad spam score

2010-09-05 Thread Fabrice Vendé
Le 03/09/2010 23:03, DZ-Jay a écrit : Fabrice, I do not have Delphi available at this moment, so could you test the code below to see if it is treated as spam by SpamAssassin? Hello, There is a tools to check SpamAssassin score here : http://www.mailingcheck.com/ Best regards, -- Fabrice V

Re: [twsocket] TSmtpCli and bad spam score

2010-09-04 Thread DZ-Jay
On Sep 04, 2010, at 13:14, Arno Garrels wrote: > DZ-Jay wrote: >> On Sep 04, 2010, at 11:40, Arno Garrels wrote: >> >>> Hello DZ-Jay, >>> >>> At least Firebird provides 5 priorities so why should we remove this >>> feature from ICS? >> >> It's not standard, most clients assume there's only "lo

Re: [twsocket] TSmtpCli and bad spam score

2010-09-04 Thread Arno Garrels
DZ-Jay wrote: > On Sep 04, 2010, at 11:40, Arno Garrels wrote: > >> Hello DZ-Jay, >> >> At least Firebird provides 5 priorities so why should we remove this >> feature from ICS? > > It's not standard, most clients assume there's only "low," "normal," > and "urgent". In any case, setting TSmtpCl

Re: [twsocket] TSmtpCli and bad spam score

2010-09-04 Thread DZ-Jay
On Sep 04, 2010, at 11:40, Arno Garrels wrote: > Hello DZ-Jay, > > At least Firebird provides 5 priorities so why should we remove this > feature from ICS? It's not standard, most clients assume there's only "low," "normal," and "urgent". In any case, setting TSmtpCli to use only three values

Re: [twsocket] TSmtpCli and bad spam score

2010-09-04 Thread Arno Garrels
Arno Garrels wrote: > Isn't it just the high priority itself, that scores? Or most likely the existence of the word "Priority", may it be low or high? But I cannot remember when I saw the last spam mail with a high priority. -- Arno Garrels -- To unsubscribe or change your settings for TWSo

Re: [twsocket] TSmtpCli and bad spam score

2010-09-04 Thread Arno Garrels
Hello DZ-Jay, At least Firebird provides 5 priorities so why should we remove this feature from ICS? It's likely that X-MSMail-Priority can be removed, however my OE v6 still uses it, XP SP3. Isn't it just the high priority itself, that scores? -- Arno Garrels > On 09/03/2010 15:09, Arno G

Re: [twsocket] TSmtpCli and bad spam score

2010-09-04 Thread Francois PIETTE
er 03, 2010 11:03 PM Subject: Re: [twsocket] TSmtpCli and bad spam score On 09/03/2010 15:09, Arno Garrels wrote: Does that mean that you or DZ-Jay will check in this change? I'm currently not up to date with the SMTP RFCs. But I wonder why "Priority" and "X-MSMail-Priority&qu

Re: [twsocket] TSmtpCli and bad spam score

2010-09-03 Thread DZ-Jay
On 09/03/2010 15:09, Arno Garrels wrote: Does that mean that you or DZ-Jay will check in this change? I'm currently not up to date with the SMTP RFCs. But I wonder why "Priority" and "X-MSMail-Priority" are no longer required? Arno, I did a little more research (I haven't kept up with these R

Re: [twsocket] TSmtpCli and bad spam score

2010-09-03 Thread Arno Garrels
Francois PIETTE wrote: >> I suggest a better solution would be as follows, which more closes >> adheres to conventions. These values have been empirically >> >discovered testing with Apple Mail, MS Outlook, and Mozilla >> Thunderbird. They are also described in various suggested >> >standards. N

Re: [twsocket] TSmtpCli and bad spam score

2010-09-03 Thread Francois PIETTE
I suggest a better solution would be as follows, which more closes adheres to conventions. These values have been empirically >discovered testing with Apple Mail, MS Outlook, and Mozilla Thunderbird. They are also described in various suggested >standards. Notice that "Normal Priority" is ty

Re: [twsocket] TSmtpCli and bad spam score

2010-09-03 Thread DZ-Jay
On Sep 03, 2010, at 06:53, Fabrice Vendé wrote: > if FHdrPriority < smtpPriorityNormal then begin >FHdrLines.Add('Priority: urgent'); >FHdrLines.Add('X-MSMail-Priority: High'); >end >else if FHdrPriority = smtpPriorityNormal then be

Re: [twsocket] TSmtpCli test.. いろはにほ へど ちりぬるを わがよたれ ぞ つねならむ うゐのおくや ま けふこえて あさきゆめみ じ ゑひもせず 色は匂へど 散 りぬるを 我が世誰ぞ 常ならむ 有為の奥山 今日越えて 浅き夢 見じ 酔ひもせずへど ちりぬ るをへど ちりぬるを

2010-04-24 Thread Arno Garrels
Piotr Dałek wrote: > I don't know why you insist on using ISO-2022-jp when there's UTF-8. > I could understand that in MIME decoder, but SMTP client? Actually I'm working on a class that is cabable to decode such stateful and multi-byte character sets "on-the-fly". Since it's much easier to enc

Re: [twsocket] TSmtpCli test.. いろはにほ へど ちりぬるを わがよたれぞ  つねならむ うゐのおくやま  けふこえて あさきゆめみじ ゑ ひもせず 色は匂へど 散りぬるを 我が世誰ぞ 常ならむ 有為の奥山 今日越えて 浅き夢見じ 酔ひもせ ずへど ちりぬるをへど ちりぬ るを

2010-04-23 Thread Piotr Dałek
Hello! >> Hello Piotr, >> >>> Header lines seem to be malformed, however... >> >> I changed the quoted-printable encoding to encode some more chars, do >> you see >> any change on your side? > I do not know what you guys got back from my previous test, this time I > got a subject header proper

Re: [twsocket] TSmtpCli test..

2010-04-23 Thread Arno Garrels
> Hello Piotr, > >> Header lines seem to be malformed, however... > > I changed the quoted-printable encoding to encode some more chars, do > you see > any change on your side? I do not know what you guys got back from my previous test, this time I got a subject header properly reencoded to Bas

Re: [twsocket] TSmtpCli test いいろ はにほへど ちりぬるを我が世誰 ぞ 常ならむ我が世誰誰ぞ 常ならむ我が世世誰ぞ 常 ならむ我が世誰ぞ 常なら む我が世誰ぞ 常ならむむ

2010-04-23 Thread 我が世誰ぞ 常 ならむ我が世誰 ぞ 常ならむ 我が世誰ぞ ぞ 常 なら む我が世誰 ぞ 常ならむ 我が世誰ぞ 常 ならむ
Hello Piotr, > Header lines seem to be malformed, however... I changed the quoted-printable encoding to encode some more chars, do you see any change on your side? "This poetry contains all the sounds in the Japanese language and used to be the first thing for children to learn in their Japanes

Re: [twsocket] TSmtpCli test $B$$$m$O $K$[$X$I!!$A$j$L$k$r2f$B2f$, @$C/$>(B $B>o$J$i$`2f$, @$C/$>(B $B>o$J$i$`2f$ , @$C/$>(B $B>o$J$i$`2f$ , $B$, @$C/$>(B $B>o$J $i$`2f$, @$C/$> $B>o$J$

2010-04-23 Thread Piotr Dałek
Hello! > If you use MS-Mail with Windows Vista and better or Outlook(Express) and > Win-XP > with additional East Asia languages installed or Thunderbird this message > should > display correctly. The attachment was most likely removed. If you think > it's not > correctly displayed please let me k

Re: [twsocket] TSmtpCli test.

2010-04-23 Thread Dave Baxter
Came through here OK, Asian symbols and all. Running OE 2003 SP3, on XP Pro, SP3, via Exchange server (unknown version/patch level) > -Original Message- > From: =?iso-2022-jp?Q?=1B$B2f$ [mailto:=?iso-2022-jp?Q?=1B$B2f$] > Sent: 22 April 2010 17:30 > To: twsocket@elists.org > Subject: [

[twsocket] RE: [twsocket] TSmtpCli testいろはにほへど ちりぬるを我我が世誰ぞ 常ならむ我が世誰ぞ 常ならむ我が世誰ぞ 常ならむ我が\x80凾タが世誰ぞ 常ならむ我が世誰ぞ\x80凾タ常ならむ

2010-04-22 Thread Darin McGee
The only thing that displayed wrong for me was the From: Subject was fine. Using Outlook 2007 -Original Message- From: twsocket-boun...@elists.org [mailto:twsocket-boun...@elists.org] On Behalf Of =?iso-2022-jp?Q?=1B$B2f$ Sent: Thursday, April 22, 2010 12:30 PM To: twsocket@elists.org S

Re: [twsocket] TSmtpCli test..

2010-04-22 Thread Arno Garrels
Arno Garrels wrote: > Hi, > > Well, the subject line has been refolded for some reason, don't know > why? Of course due to a blind MTA prefixing the subject with "Re:[twsocket]" which destroys the proper MIME encoding. -- Arno Garrels -- To unsubscribe or change your settings for TWSocket m

Re: [twsocket] TSmtpCli test..

2010-04-22 Thread Arno Garrels
Hi, Well, the subject line has been refolded for some reason, don't know why? Here's what was actually sent: Subject: =?iso-2022-jp?Q?TSmtpCli test =1B$B$$$m$O$K$[$X$I!!$A$j$L$k$r2f?= =?iso-2022-jp?Q?=1B$B2f$,@$C/$>=1B(B =1B$B>o$J$i$`2f$,@$C/$>=1B(B ?= =?iso-2022-jp?Q? =1B$B>o$J$i$`2f$,@$C/$>

Re: [twsocket] TSmtpCli Error 451

2009-10-28 Thread Max Wright
Arno - With a program sending multiple emails, one user is getting this: MAIL FROM: < 250 ... Sender ok RCPT TO: < 451 Too many messages Send failed RequestDone Rq=9 Error=451 Disconnect failed RequestDone Rq=6 Error=451 Are those messages just carbon copies or blind carbon copies? If s

Re: [twsocket] TSmtpCli Error 451

2009-10-28 Thread A Drent
- Original Message - From: "Arno Garrels" To: "ICS support mailing" Sent: Wednesday, October 28, 2009 4:02 PM Subject: Re: [twsocket] TSmtpCli Error 451 Hello Max, With a program sending multiple emails, one user is getting this: MAIL FROM: < 250

Re: [twsocket] TSmtpCli Error 451

2009-10-28 Thread Arno Garrels
Hello Max, > With a program sending multiple emails, one user is getting this: > >> MAIL FROM: > < 250 ... Sender ok >> RCPT TO: > < 451 Too many messages > Send failed > RequestDone Rq=9 Error=451 > Disconnect failed > RequestDone Rq=6 Error=451 > > First, am I right in assuming this is a mail

Re: [twsocket] TSmtpCli autenication

2009-08-05 Thread Wilfried Mestdagh
> Mixed up request types with methods, guess you know what I mean > nevertheless. That's ok. Thanks for the help. --- Rgds, Wilfried [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html http://www.mestdagh.biz -- To unsubscribe or change your settings for TWSocket mailing list please goto

Re: [twsocket] TSmtpCli autenication

2009-08-05 Thread Arno Garrels
Arno Garrels wrote: > Wilfried Mestdagh wrote: > >> Does it not matter how the code is written (OnRequestDone), eg like >> this: >> >> case RqType of >> smtpConnect: begin >>Cli.Helo; >> end; >> smtpHelo: begin >>Cli.Mail; >> end; >> >

Re: [twsocket] TSmtpCli autenication

2009-08-05 Thread Arno Garrels
Wilfried Mestdagh wrote: > Does it not matter how the code is written (OnRequestDone), eg like > this: > > case RqType of > smtpConnect: begin >Cli.Helo; > end; > smtpHelo: begin >Cli.Mail; > end; > > Meaning, I don't use Ehlo method o

Re: [twsocket] TSmtpCli autenication

2009-08-05 Thread Wilfried Mestdagh
thank you Arno for fast answer, Does it not matter how the code is written (OnRequestDone), eg like this: case RqType of smtpConnect: begin Cli.Helo; end; smtpHelo: begin Cli.Mail; end; Meaning, I don't use Ehlo method or so. ---

Re: [twsocket] TSmtpCli autenication

2009-08-05 Thread Arno Garrels
Hello Wilfried, > I cannot test this at the moment, but if I set in TSmtpCli (ICS V5): > AutType := smtpAuthAutoSelect; > And fill in the userName and passWord (at creation time), is this > enough that it find all possible autentication types (seems to be > quit a few)? It's enough. It even prob

Re: [twsocket] TSmtpCli + TLS + SSL Support

2009-01-12 Thread luciano digivoice
Thank's for your support, after this everythink is ok, I sent mails using my gmail account with Implicit(port 465) and Explicit(port 25). Thank you for your support. On Tue, Jan 6, 2009 at 3:43 PM, Arno Garrels wrote: > luciano digivoice wrote: > > > I was reading the source code of 'OverbyteI

Re: [twsocket] TSmtpCli + TLS + SSL Support

2009-01-06 Thread Arno Garrels
luciano digivoice wrote: > I was reading the source code of 'OverbyteIcsSslMailSnd', but I don't > know the steps that I need to follow to send an e-mail using my gmail > account, There is nothing special with gmail accounts. Gmail provides both, Implicit and Explicit TLS. Implicit requires to

Re: [twsocket] TSmtpCli + TLS + SSL Support

2009-01-06 Thread luciano digivoice
Hi, first of all thank you so much. I was reading the source code of 'OverbyteIcsSslMailSnd', but I don't know the steps that I need to follow to send an e-mail using my gmail account, What I need to type in the 'text box' parameters, and I don't know the button steps that I need to follow. Could

Re: [twsocket] TSmtpCli + TLS + SSL Support

2009-01-05 Thread Arno Garrels
luciano digivoice wrote: > Hello All, > > after set USE_SSL at .inc file everything is OK, I tried to send an > email using tls support and OK. I have my GMail accont and I would > like to know if anyone has an example of a source code to help me. There's a demo application in sub folder SslInter

Re: [twsocket] TSmtpCli + TLS + SSL Support

2009-01-05 Thread luciano digivoice
Hello All, after set USE_SSL at .inc file everything is OK, I tried to send an email using tls support and OK. I have my GMail accont and I would like to know if anyone has an example of a source code to help me. What do I need to set on the TSslSmtpCli parameters? Thank you for your support. O

Re: [twsocket] TSmtpCli + TLS + SSL Support

2008-12-09 Thread Arno Garrels
luciano digivoice wrote: > Good morning List, > > I've been using the ICS version(since 2002), I use this components > only for send e-mails(TSmtpCli). Last week I got a problem using a > GMAIL account, the GMAIL needs a SSL Support, and now my e-mail > server needs a TLS support. How can I fix it

Re: [twsocket] TSmtpCli - How do Iprocess multipleemailsusingthiscomponent?

2008-07-29 Thread SoftTech
d see what happens. Thanks again, Mike - Original Message - From: "Fredrik Larsson" <[EMAIL PROTECTED]> To: "'ICS support mailing'" Sent: Tuesday, July 29, 2008 7:03 AM Subject: Re: [twsocket] TSmtpCli - How do Iprocess multipleemailsusingthiscompo

Re: [twsocket] TSmtpCli - How do I processmultipleemailsusingthiscomponent?

2008-07-29 Thread Francois Piette
upport mailing" Sent: Tuesday, July 29, 2008 1:45 PM Subject: Re: [twsocket] TSmtpCli - How do I processmultipleemailsusingthiscomponent? > Hi Francois, > > You say that the OnRequestDone event is the correct place to process mass > e-mails using the TSmtpCli component and then

Re: [twsocket] TSmtpCli - How do I process multipleemailsusingthiscomponent?

2008-07-29 Thread Fredrik Larsson
Mike, If you read my posting you will see how to implement the RequestDone event. It's also explained in the wiki at http://wiki.overbyte.be/wiki/index.php/TSmtpCli.OnRequestDone There is a line of code where you re-populate the fields (subject, recips et.c.) and this is where you would read from

Re: [twsocket] TSmtpCli - How do I process multipleemails usingthiscomponent?

2008-07-29 Thread SoftTech
: "Fredrik Larsson" <[EMAIL PROTECTED]> To: "'ICS support mailing'" Sent: Tuesday, July 29, 2008 4:09 AM Subject: Re: [twsocket] TSmtpCli - How do I process multipleemails usingthiscomponent? > Well something like this exists in my code. Some functions

Re: [twsocket] TSmtpCli - How do I process multipleemailsusingthiscomponent?

2008-07-29 Thread SoftTech
uide) instead of the TSmtpCli component using some form of coding in the onRequestDone event? I await you guidance. Thanks, Mike - Original Message - From: "Francois Piette" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Tuesday, July 29, 2008 2:02

Re: [twsocket] TSmtpCli - How do I process multiple emails usingthiscomponent?

2008-07-29 Thread Fredrik Larsson
TP connection closed, restarting timer...'); SendTimer.Enabled := True; end; end; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of SoftTech Sent: den 28 juli 2008 22:37 To: ICS support mailing Subject: Re: [twsocket] TSmtpCli - How do I process m

Re: [twsocket] TSmtpCli - How do I process multiple emailsusingthiscomponent?

2008-07-29 Thread Francois Piette
e) http://www.overbyte.be > - Original Message - > From: "Francois PIETTE" <[EMAIL PROTECTED]> > To: "ICS support mailing" > Sent: Monday, July 28, 2008 11:08 AM > Subject: Re: [twsocket] TSmtpCli - How do I process multiple emails > usingthiscomponent? > &

Re: [twsocket] TSmtpCli - How do I process multiple emails usingthiscomponent?

2008-07-28 Thread SoftTech
processed records in a database? Thanks, Mike - Original Message - From: "Francois PIETTE" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, July 28, 2008 11:08 AM Subject: Re: [twsocket] TSmtpCli - How do I process multiple emails usingthiscomponent?

Re: [twsocket] TSmtpCli - How do I process multiple emails using thiscomponent?

2008-07-28 Thread Francois PIETTE
You are trying to use an asynchronous (non-blocking) component as a synchronous (blocking) one. The solution is simple: think asynchronous, think events ! Have a look there: http://wiki.overbyte.be/wiki/index.php/Asynchronous_Paradigm Then come back here to ask for more questions... -- [EMAIL PR

Re: [twsocket] TsmtpCli - Event Mail Sent - Delete Attached Temp Files.

2008-05-08 Thread Arno Garrels
Hello Wayne, 1.) TSmtpCli works asynchronous! Any method call returns immediately, regardless whether the request has been answered yet or not. Later when the server response is received OnRequestDone will trigger. That's the place to check for errors and to control program flow. 2.) The interna

Re: [twsocket] TSmtpCli Attach files without real files

2007-05-24 Thread Tobias Rapp
I have not tried it but from looking at the sources I would say that it might work if you would change the "OnAfterFileOpen" event so that it passes the FStream as a "var" variable. Then you could initialize that stream variable with a memory- or stringstream in your event handler. Maybe you will h

Re: [twsocket] TSmtpCli Attach files without real files

2007-05-22 Thread Francois PIETTE
Out of my mind without checking the source code: You may override the function which read the data frm file. Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html -- [EMAIL PROTECTED] The author of the freeware multi-tier middleware MidWare The author of the freeware Internet Co

Re: [twsocket] TSmtpCli encoding (was: Freeze when using smtpafterrecreating itsparentform)

2006-12-23 Thread Arno Garrels
DZ-Jay wrote: > On Dec 22, 2006, at 05:28, Henrik wrote: > >> Ok, so if I want to be sure that Swedish e-mails looks the same when >> they >> arrive to the recipient regardless of what language is used on the >> recipients computer I should encode the text message with >> QuotedPrintable? >> >

Re: [twsocket] TSmtpCli encoding (was: Freeze when using smtp afterrecreating itsparentform)

2006-12-23 Thread DZ-Jay
On Dec 22, 2006, at 05:28, Henrik wrote: > Ok, so if I want to be sure that Swedish e-mails looks the same when > they > arrive to the recipient regardless of what language is used on the > recipients computer I should encode the text message with > QuotedPrintable? > > And this is done by sett

Re: [twsocket] TSmtpCli encoding (was: Freeze when usingsmtpafterrecreating itsparentform)

2006-12-22 Thread Arno Garrels
Bjørnar Nielsen wrote: > I use the same component and send norwegian, swedish and even chinese > chars > in the subject (but Outlook can't show chinese in the subject on my > computer). > > Use Quoted printable or Base64 to encode special chars. Example for > Base64 > could be like this (C++): >

Re: [twsocket] TSmtpCli encoding (was: Freeze when using smtpafterrecreating itsparentform)

2006-12-22 Thread Arno Garrels
Henrik wrote: > Ok, so if I want to be sure that Swedish e-mails looks the same when > they > arrive to the recipient regardless of what language is used on the > recipients computer I should encode the text message with > QuotedPrintable? That won't work, since TSmtpCli does not convert strings

Re: [twsocket] TSmtpCli encoding (was: Freeze when using smtp afterrecreating itsparentform)

2006-12-22 Thread Henrik
Ok, so if I want to be sure that Swedish e-mails looks the same when they arrive to the recipient regardless of what language is used on the recipients computer I should encode the text message with QuotedPrintable? And this is done by setting the following properties? SmtpCli1.Allow8bitChars :

Re: [twsocket] TSmtpCli. Please help..

2006-05-31 Thread Arno Garrels
Tayfun Susamcioglu wrote: > so I want to do same thing with TSmtpCli. > When I send a file with E-Mail, I want to show progress. Because It > take a long time. about 2-3 minutes. How can I do this? In ICS it's not so easy because the mail including attachments is possibly encoded and the encodin

Re: [twsocket] TSmtpCli: No Get Correct Time Zone

2006-05-22 Thread Macfly
Please Ignore this message. TimeZone works fine in TSMTPCli Att. MacFly Macfly <[EMAIL PROTECTED]> wrote: Hi for All I Use TSmtpCli to send mail, but when i receive message with mail client program or webmail like Yahoo, the received messages was date in the past. Exactly -3

Re: [twsocket] TSmtpCli and Hebrew text

2005-12-24 Thread DZ-Jay
You should make sure to set the charset attribute of the Content-Type header as the proper character set for your message. Example: Content-Type: text/html; charset=UTF-8 dZ. On Dec 23, 2005, at 09:22, Vlad Gonchar wrote: > How I can send email with body in Hebrew? > > Usually I work

Re: [twsocket] TSmtpCli and Hebrew text

2005-12-24 Thread Francois PIETTE
I suggest you build a message using Outlook and the same with ICS component. Then compare both structure and findout the differences. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: "Vlad Gonchar" <[EMAIL PROTECTED]> To: Sent: Friday, December 23, 2005 3:22 PM Sub

Re: [twsocket] TSmtpCli

2005-06-08 Thread Arno Garrels
Mark Mitton wrote: > Hi All, > > I am new to Ics and mailing list and networking. > > I was using fastnet with BCB6 for simple transparent > sending of email with one attachment. I now need to > support SMTP authentication. > > Does anyone have a sample or some guidance on how to > send email us