Topic: Sendmail with cc recipients possible?

maybe someone can help me.
is it possible to send an email with sendmail to cc recipients.
would be great.

Re: Sendmail with cc recipients possible?

Check out this project
http://myvisualdatabase.com/forum/misc. … download=1


using this line you can add cc recipients
//LMsg.CCList.Add.Address := '';  // CC emails

Dmitry.

Re: Sendmail with cc recipients possible?

Thank for quick help :-)
For multiple cc adresses i have to copy and modify the // Recipient Block?

Re: Sendmail with cc recipients possible?

example:

LMsg.CCList.Add.Address := 'email1@gmail.com';
LMsg.CCList.Add.Address := 'email2@gmail.com';
LMsg.CCList.Add.Address := 'email3@gmail.com';
Dmitry.