Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Jun : Programaticlly adding to recipients list
| Subject: | Programaticlly adding to recipients list |
| Posted by: | "Mac Davis" (newsgrou..@blindsided.org) |
| Date: | Fri, 9 Jun 2006 14:28:22 |
Could someone please provide an example of programatically creating a list
of recipients?
For example, let's suppose I have a TMemo with one email address per line.
How would I add those addresses to a TIdMessage ?
For i:= 0 to pred (memo1.lines.count) do begin
st := memo1.lines [i];
?????
end;
Thanks,
Mac