Indy 9
Example
TIdMessage.CCList
Delphi

      AMessage.CCList.EmailAddresses :=
        '"John Doe" , "Jane Doe" ';

      with AMessage.BCCList.Add do
      begin
        Name := 'John Doe';
        Address := 'jdoe@some.net';
      end;

      with AMessage.BCCList.Add do
      begin
        Name := 'Jane Doe';
        Address := 'janed@another.net';
      end;

Created with Doc-O-Matic 2 donated to Project JEDI. Commercial license available from the Doc-O-Matic site.