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
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 available in the dll,
mailing does
> 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
Thanks for the info
I am using a delphi 7 TRichedit box and using the code Smtpcli.MailMessage :=
editor.lines
where editor is the Richedit. How do I set the Mime type for the TSmtpCli
component.
thanks
colin
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http
> 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
Hi I have started looking at using the TSmtpCli and have a couple of question
if that is ok -
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 and I am wondering why?
2.
>> 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
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
Does the TSmtpCli support ports other than 25? We are considering the ICS
for emailing from within our application using gmail that requires port 465
(with SSL) and port 587 (with TLS),
Thanking you
D.S.Vlachavas
--
To unsubscribe or change your settings for TWSocket mailing list
please goto h
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
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
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
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
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
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
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
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
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
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
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
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
Hello,
I have found something which give a very bad spam score in
OverbyteIcsSmtpProt.pas.
Tested with SpamAssassin for example in all version of ICS ans Delphi.
I have found a solution in OverbyteIcsSmtpPro.pas :
Change :
procedure TCustomSmtpClient.Data;
...
if FHdrPriority < s
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
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
> 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
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
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
rg
> Subject: [twsocket] TSmtpCli testいろはにほへど ちりぬるを我我が世誰ぞ
> 常ならむ我が世誰ぞ 常ならむ我が世誰ぞ 常ならむ我が?凾タが世誰ぞ 常ならむ我が世誰ぞ?凾タ常ならむ
>
> Hi,
>
> This is a test e-mail sent with v7 MailSnd demo and a
> modified/fixed TSmtpCli.
>
Trimmed!
> --
> Arno Garrels
>
>
PS: I
Subject: [twsocket] TSmtpCli testいろはにほへど ちりぬるを我我が世誰ぞ 常ならむ我が世誰ぞ 常ならむ我が世誰ぞ
常ならむ我が?凾タが世誰ぞ 常ならむ我が世誰ぞ?凾タ常ならむ
Hi,
This is a test e-mail sent with v7 MailSnd demo and a modified/fixed TSmtpCli.
The charset is MBCS "iso-2022-jp", those MBCS were not properly supported by
TSmtpCli inclu
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
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/$>
Hi,
One of my clients reports that he cannot open a PDF
attachment on his Blackberry.
I cannot test it myself and do not know how the Blackberry
mobile device handles e-mail.
"it seems to append a quotation mark - ' before the file
name making the PDF unreadable when viewed on our Blackberry
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
- 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
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
Hello All -
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 server issue? Or co
> 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
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;
>>
>
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
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.
---
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
Hello,
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)?
--
Rgds, Wilfried
http://www.mestdagh.biz
--
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
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
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
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
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
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
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. Is there a new version of ICS compo
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
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
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
: "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
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
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
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?
>
&
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?
PROTECTED]
The author of the freeware multi-tier middleware MidWare
The author of the freeware Internet Component Suite (ICS)
http://www.overbyte.be
- Original Message -
From: "SoftTech" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Monday, July 28, 2008
Greets All,
I need to loop thru a database and process several emails. I first setup the
default settings for the SmtpCli component, then later in my code I loop thru
data in a dataset as shown below. My problem is it will only process the first
email in the dataset, then when it gets to the
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
Hello,
I have a problem knowing when to delete temp files, the attachments to the
Email message;
Here is my Problem I am having.
=
FIRST TRY
=
(1'st Email)
(Trigger to Send Email)-->Class Fucntion to Send Email.
essage -
> From: "Wilfried Mestdagh" <[EMAIL PROTECTED]>
> To: "ICS support mailing"
> Sent: Tuesday, May 22, 2007 6:29 PM
> Subject: [twsocket] TSmtpCli Attach files without real files
>
>
>> Hello,
>>
>> I want to send mail with T
Component Suite (ICS)
http://www.overbyte.be
- Original Message -
From: "Wilfried Mestdagh" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Tuesday, May 22, 2007 6:29 PM
Subject: [twsocket] TSmtpCli Attach files without real files
> Hello,
>
> I w
Hello,
I want to send mail with TSmtpCli with a few attached file. But I really
do not want to create files on the disk unless absolutely nececarry.
But I'm a little stuck on how to attach files because it seems to be
designed to only get them from disk or is there something I do not see ?
To be
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?
>>
>
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
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++):
>
able; (to get the body
> encoded)
>
> // Henrik
>
> -Ursprungligt meddelande-
> Från: [EMAIL PROTECTED] [mailto:twsocket-
> [EMAIL PROTECTED] För
> Arno Garrels
> Skickat: den 22 december 2006 10:30
> Till: ICS support mailing
> Ämne: [twsocket] TSmtpCli enco
Bjørnar Nielsen wrote:
> I'm not sure, but I think the body of the email is automaticly
> encoded to
> quoted printable (the plain text part), I think others in this list
> knows
In TSmtpCli it depends on properties DefaultEncoding as well as
on Allow8bitChars.
- Allow8bitChars: Default=TRUE, h
Ämne: [twsocket] TSmtpCli encoding (was: Freeze when using smtp
afterrecreating itsparentform)
Bjørnar Nielsen wrote:
> I'm not sure, but I think the body of the email is automaticly encoded
> to quoted printable (the plain text part), I think others in this list
> knows
In TSmtpCli
Hello,
Yesterday I added NTLM support to the TSmtpCli, and it's
working fine against Exchange 2003 Service Pack 2.
Was no big deal since Francois already did the basic
work, see NtlmMsgs.pas.
I've uploaded new SmtpProt.pas/OverbyteIcsSmtpProt.pas
as well as matching demo DFMs since items in the
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
Hello,
I wrote a procedure for downloading a file with THttpCli.
I can learn it's position on progress.
procedure TMainForm.xHttpCliDocData(Sender: TObject; Buffer: Pointer; Len:
Integer);
var xCount : Integer;
begin
inherited;
xCount := 0;
if THttpCli(Sender).ContentRangeBegin <> '' the
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
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 hours, this is the same Time Zone for my Country (-3:00).
The question is, how i set Date for message to corre
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
23, 2005 3:22 PM
Subject: [twsocket] TSmtpCli and Hebrew text
> How I can send email with body in Hebrew?
>
> Usually I work in English US local.
> I would like to use TSmtpCli.
> If I specify ContentType := smtpHTML,
> my Microsoft Outlook receives the text as question marks
How I can send email with body in Hebrew?
Usually I work in English US local.
I would like to use TSmtpCli.
If I specify ContentType := smtpHTML,
my Microsoft Outlook receives the text as question marks.
Thank you,
Vlad
--
To unsubscribe or change your settings for TWSocket mailing list
please
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
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 using TSmtpCli. More specifically, I need
80 matches
Mail list logo