> In addition to my other message, it is so much faster to send
> multiple recipients in the To rather then sending them individually.
It may be faster, but if your emails are deleted as spam due to
'undisclosed recipients', why send the email in the first place.
Angus
--
To unsubscribe or cha
Hello Angus.
In addition to my other message, it is so much faster to send multiple recipients in the To rather then sending them
individually.
Raymond
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visi
Hello Arno.
Thanks for all this information. I will have to investigate this with my ISP.
My use would be with my (hoped-for) customers. I'm planning ahead, as I don't want to have to change the code once I
place my product the market.
It's definitely not spam, and customers choose whether to
> I need to add up to 200,000 names to the ToList, which could be
> about 4,000,000 characters.
> Can T...SMTPCli handle this quantity?
Most ISPs have blocks on their SMTP relay servers to prevent mass mailing
by spammers, typically a few hundred or thousand messages a day, after
which your accou
Hello Arno.
Thanks for mentioning RcptNameAdd(...).
It's parameters are strings.
I need to add up to 200,000 names to the ToList, which could be about 4,000,000
characters.
As each email address is added to the list, the memory handling might make this
become very slow.
Can T...SMTPCli handl
Raymond Kennington wrote:
> Hello.
>
> One of my developed has been using this component to send messages
> for 13 years.
> No problems! Thanks!!
>
> Now I am incorporating the code into another project, and I would
> rather use Bcc instead of cc - because I don't want the receiver to
> know who
Hello.
One of my developed has been using this component to send messages for 13 years.
No problems! Thanks!!
Now I am incorporating the code into another project, and I would rather use Bcc instead of cc - because I don't want
the receiver to know who else the message is being sent to.
Is Bl
Darren Doggett wrote:
> 530 5.7.0 Must issue a STARTTLS command first. 13sm630074ewy.13
> < 530 5.7.0 Must issue a STARTTLS command first. 13sm630074ewy.13
>
> Using my limted knowledge is the problem that the smtpclient
> component is not sending the command
> STARTLLS, if this is the case the
Hi, I’m new to all this, and was looking for some help/advise with regards to
smtpclient.
Using the OverbyteIcsMailSnd as a demo app I can’t seem to send emails to gmail.
Here is the error log as provided in the demo app
Connecting to SMTP server...
220 mx.google.com ESMTP 13sm630074ewy
Arno Garrels wrote:
> However CalculatedMessageSize will have to compose the message
> including Base64 encoding of all file attachments in advance which
> takes some time (with a 12 MB file attachment it takes approximately
> 4 seconds on my computer).
Forgot to mention, that the message size co
Jean-Paul Passama wrote:
> Has someone any idea to get a progress bar to visualize the sending
> progression, as Thunderbird does, while sending a message (with heavy
> attachment) ?
Since the TSmtpCli encodes all message parts on the fly you cannot know
the message size in advance which makes i
Hi,
Has someone any idea to get a progress bar to visualize the sending
progression, as Thunderbird does, while sending a message (with heavy
attachment) ?
Thank you
JP Passama
--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mail
Hello,
I finally got it working now by using (and somewhat enhancing) that
thread approach.
I've left out the cancelling on long lasting connection attempts right
now, maybe I add it later and I think I might want to do it on shutdown
as well.
Greetings
Markus
--
To unsubscribe or change yo
Hello,
I#ve a new idea and would like some expert opinions about it before
wasting time on it:
what if I put the e-mail sending in a seperate thread where the
SmptCLient is bound to the thread (execute)? So it would have its own
message loop which hopefully wouldn't interfere with the rest of
Hello,
my COM server goes havoc when the e-mail has been sent. If the client
calls some simple functions which normally would only read something
from the database and return the value they fail instead. Functions
which aren't really interdependant or so.
I'm wondering now why. It also happens
Hello,
Wilfried suggested today that I should use a timer. Basically a good
idea, but how to do? The com-server's function should send the mail and
either return sort of true if successfull or false if not (it actually
would return the mail server's address or a empty string if not
successfull
Hello,
I've still or even worse trouble with this e-mail sending. maybe I
should explain it more in detail what my environment is and what I want
to do.
Okay I have this:
COM Client -> COM-Server -> ICS SmtpClient
|
Other application connected via TWSocket (TCP)
Hello Markus,
You dont have to loop. Just set a Timer and Connect, that's all. You can
disable the Timer in OnSessionConnected. If timer expires just call
Abort. When OnSessionClosed is called set a flag. When OnRequestDone is
called and session is closed start your next connection (depending on
s
> The problem is now that I like to cancel the connect if it takes
> too long.
Essentially, you have no control over how long connect takes to time out.
There are registry settings relating to TCP attempts and retry delays,
but messing with them is dangerous and unpredictable, and effects all
Win
Hello,
I'm using your SmtpClient component for sending e-mails.
I'm trying to built in a failover in my application so that if the first
configured mail server can't be reached a second etc. will be tried.
The problem is now that I like to cancel the connect if it takes too long.
timeout:=ti
IETTE" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Saturday, November 18, 2006 10:11 AM
Subject: Re: [twsocket] SmtpClient problem on disconnect
>> Thanks for all, I understand. Today I have tryed with a simple TCP client
>> emulating the SMTP protocol ma
> Thanks for all, I understand. Today I have tryed with a simple TCP client
> emulating the SMTP protocol manually, and ALL works good, the server is
> closing the connection. But again using the SmtpCli.pas component the
> connection is not closed or OnRequestDone is not fired (this only happens
>
using EHLO with AUTH LOGIN).
Well I will keep trying...
thanks,
David
- Original Message -
From: "Francois Piette" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Friday, November 17, 2006 11:00 AM
Subject: Re: [twsocket] SmtpClient problem on disconn
> We've been talking this topic many times.
> The RFCs say that the server has to close the
connection, so if
> a server doesn't close the connection on receiving
command QUIT
> the server is buggy. You can handle those
server-side bugs with a simple
> command timeout, in real applications some a
ember 17, 2006 12:05 AM
Subject: [twsocket] SmtpClient problem on disconnect
> Hello all:
>
> I'm having problems SmtpCli where OnRequestDone function is not fired
after
> sending QUIT command because the SMTP server is not closing the
> connection!!. It occurs only when using EHLO co
David A. G. wrote:
> Hello all:
>
> I'm having problems SmtpCli where OnRequestDone function is not fired
> after sending QUIT command because the SMTP server is not closing the
> connection!!.
We've been talking this topic many times.
The RFCs say that the server has to close the connection, so
Hello all:
I'm having problems SmtpCli where OnRequestDone function is not fired after
sending QUIT command because the SMTP server is not closing the
connection!!. It occurs only when using EHLO command and AUTH LOGIN
authentication. I have tryed with 2 servers with same results (big linux
se
Sent: Friday, September 08, 2006 9:40 AM
Subject: Re: [twsocket] SMTPClient
> lalin wrote:
> > The error number is always 550. In IIS, it appears a connection but it
> > doesn't send anything.
>
> Means 550 Relaying denied
>
> You probably need to authen
Ok, Thanks.
- Original Message -
From: "Arno Garrels" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Friday, September 08, 2006 9:40 AM
Subject: Re: [twsocket] SMTPClient
> lalin wrote:
> > The error number is always 550. In IIS, it appears a
byte.be/eng/overbyte/teamics.html
> Regards.
>
> - Original Message -
> From: "Francois PIETTE" <[EMAIL PROTECTED]>
> To: "ICS support mailing"
> Sent: Thursday, September 07, 2006 8:07 PM
> Subject: Re: [twsocket] SMTPClient
>
>
The error number is always 550. In IIS, it appears a connection but it
doesn't send anything.
Regards.
- Original Message -
From: "Francois PIETTE" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Thursday, September 07, 2006 8:07 PM
Subject: Re: [twso
CTED]
http://www.overbyte.be
- Original Message -
From: "lalin" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Thursday, September 07, 2006 4:46 PM
Subject: Re: [twsocket] SMTPClient
> Hello,
>No, I hadn't seen your answer. Thanks for response once.
Rq=5
Quit!
RequestDone Rq=6
Done!
But the mail isn't received. I have tested the smtp server 127.0.0.1 and
the domain in IIS console.
What can it be?
Regards.
- Original Message -
From: "Francois PIETTE" <[EMAIL PROTECTED]>
To: "ICS support mailing"
riginal Message -
From: "lalin" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Wednesday, September 06, 2006 4:50 PM
Subject: [twsocket] SMTPClient
> Hello,
> I use SMTPClient for sending a email since a server with default smtp
> server of IIS. Th
Hello,
I use SMTPClient for sending a email since a server with default smtp
server of IIS. The example program find this smtp server. But in my program,
with this code:
Smtp1.Host := smtpserver;
Smtp1.port := 'smtp';
Smtp1.FromName := name;
Smtp1.HdrFrom := mail1;
Smtp
- Original Message -
From: "lalin" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Friday, September 01, 2006 12:08 PM
Subject: Re: [twsocket] SMTPClient
> Hi Bevan
> Thanks for your response. I have corrected that but continues giving
error.
> The
nd it is the same.
Can you help me?
Regards.
Carlos.
- Original Message -
From: "Bevan Edwards" <[EMAIL PROTECTED]>
To: "ICS support mailing"
Sent: Thursday, August 31, 2006 4:13 PM
Subject: Re: [twsocket] SMTPClient
> Hi Carlos,
>
> Is the "Smtp
lalin ha scritto:
> Hello,
> I use SMTPClient for sending a email since a server with default smtp
> server of IIS. The example program find this smtp server. But in my program,
> with this code:
> Smtp1.Host := smtpserver;
> Smtp1.port := 'smpt';
> Smtp1.FromName := name;
>
Hi Carlos,
Is the "Smtp1.port := 'smpt';" an error in your code or a typo?
It should be "Smtp1.port := 'smtp';"
Regards,
Bevan
lalin wrote:
> Hello,
> I use SMTPClient for sending a email since a server with default smtp
> server of IIS. The example program find this smtp server. But
Hello,
I use SMTPClient for sending a email since a server with default smtp
server of IIS. The example program find this smtp server. But in my program,
with this code:
Smtp1.Host := smtpserver;
Smtp1.port := 'smpt';
Smtp1.FromName := name;
Smtp1.HdrFrom := mail1;
S
lalin wrote:
> Hello,
> I use SMTPClient for sending a email since a server with default
> smtp server of IIS. The example program find this smtp server. But in
> my program, with this code: Smtp1.Host := smtpserver; Smtp1.port
> := 'smpt'; Smtp1.FromName := name;
> Smtp1.HdrFrom := ma
Hello,
I use SMTPClient for sending a email since a server with default smtp
server of IIS. The example program find this smtp server. But in my program,
with this code:
Smtp1.Host := smtpserver;
Smtp1.port := 'smpt';
Smtp1.FromName := name;
Smtp1.HdrFrom := mail1;
Smtp1.HdrTo:
Could you be more specific?
>
> Roland Couvela
>
>
> Date: Fri, 23 Jun 2006 09:20:29 -0300
> From: "Marcelo Grossi" <[EMAIL PROTECTED]>
> Subject: Re: [twsocket] smtpclient error
> To: "ICS support mailing"
> Message-ID: <[EMAIL PROTECTED
t; <[EMAIL PROTECTED]>
Subject: Re: [twsocket] smtpclient error
To: "ICS support mailing"
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; format=flowed; charset="iso-8859-1";
reply-type=original
Probably nothing. See the header on the SmtpClient for the cha
L PROTECTED]>
To:
Sent: Thursday, June 22, 2006 7:16 PM
Subject: [twsocket] smtpclient error
>I have been using the smtp component for some time, but need to update it
>because I need the authentication feature so I downloaded the current ics
>suite.
>
> On recompiling
I have been using the smtp component for some time, but need to update it
because I need the authentication feature so I downloaded the current ics suite.
On recompiling my program I get an error message reading "SmptClient.ShareMode
Property does not exist"
What have I done wrong?
Roland Couv
46 matches
Mail list logo