hots wrote:
> MgeSend.Recipients.EMailAddresses:='test1@test.com;test2@test.com;test
> 3@test.com';
>
> MgeSend.CCList.EMailAddresses:='test4@test.com;test5@test.com;test6@te
> st.com';
Assuming you are using Indy's TIdMessage component, then yes, that will work.
You can also assign the addresses individually:
{code}
MgeSend.Recipients.Add.Address := 'test1@test.com';
MgeSend.Recipients.Add.Address := 'test2@test.com';
MgeSend.Recipients.Add.Address := 'test3@test.com';
MgeSend.CCList.Add.Address := 'test4@test.com';
MgeSend.CCList.Add.Address := 'test5@test.com';
MgeSend.CCList.Add.Address := 'test6@test.com';
{code}
--
Remy Lebeau (TeamB)