Newsgroups : Borland : borland.public.delphi.internet.winsock : 2008 Mar : Re: Multiple, duplicate e-mail being sent
| Subject: | Re: Multiple, duplicate e-mail being sent |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Tue, 4 Mar 2008 12:06:43 |
"Joseph Gordon" <pdsphx@parishdatainc.com> wrote in message
news:47cd93b8@newsgroups.borland.com...
> I have a program that can send an e-mail to a set of people.
> It uses Indy to send it. I have one user that when they run the
> process they some times gets multiple copies going to each
> person in the list. In one case each person got 10 e-mail.
How are you setting up the TIdMessage's Recipients, CcList, and BccList
properties? You are likely specifying the same addresses multiple times
when you shouldn't be.
> I have look thru the code I am using and I don't see a problem
> in my code.
Please show your actual code.
> Is there something that might 'retry' to send under some condition?
Indy does not do that. It sends to each address you specify, sending only
once per entry, succeeding or failing on a per-entry basis. It never
attempts to resend to failed entries.
> I was wondering if there is an error condition that might cause it
> to retrying even though the e-mail is was actually sent.
Not in Indy itself, no. Are you are managing that in your own code?
Gambit
none