INetMailMessage.Bcc

Syntax

Bcc: INetMailAddressCollection;

Description

The Bcc property returns the collection of the email addresses, to which the blind copy of email message is sent. These addresses are not available for the main recipient and the copies recipients (CC).

Example

Sub Main;

Var

Addr, From_, To_: INetMailAddress;

CopyTo: INetMailAddressCollection;

Message: INetMailMessage;

Client: INetSmtpClient;

Begin

From_ := New NetMailAddress.Create("ivanov@server.ru");

To_ := New NetMailAddress.Create("petrov@mail.ru");

Message := New NetMailMessage.CreateWithFromAndTo(From_, To_);

Message.Subject := "Test message";

Message.Body := "Message copies";

CopyTo := Message.BCC;

Addr := New NetMailAddress.CreateWithName("user1@mail.ru", "User");

CopyTo.Add(Addr);

Addr := New NetMailAddress.Create("user2@mail.ru");

CopyTo.Add(Addr);

Client := New NetSmtpClient.CreateWithHost("example.server.ru");

Client.Send(Message);

End Sub Main;

After executing the example the message is sent via the specified mail server. The message blind copy is sent to two addresses: user1@mail.ru and user2@mail.ru.

See also:

INetMailMessage | INetMailMessage.CC