Sample code for 30+ languages & platforms
SQL Server

Get a Bcc Recipient's Full Address

See more Email Object Examples

Demonstrates the Chilkat Email.GetBcc method, which returns a blind carbon-copy recipient's full email address (display name and address together) at a given zero-based index. This example adds two Bcc recipients and enumerates them.

Background: Bcc recipients are stored on the Email object even though their addresses are stripped from the delivered message headers. GetBcc returns the "full" form — the combined Display Name <address> — whereas GetBccAddr and GetBccName return just the address or just the name. Iterate from 0 to NumBcc - 1 to read them all.

Chilkat SQL Server Downloads

SQL Server
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @sTmp0 nvarchar(4000)
    --  Demonstrates the GetBcc method, which returns a blind carbon-copy recipient's full email
    --  address (name and address) at the given zero-based index.

    DECLARE @email int
    EXEC @hr = sp_OACreate 'Chilkat.Email', @email OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    EXEC sp_OASetProperty @email, 'Subject', 'GetBcc example'

    DECLARE @success int
    EXEC sp_OAMethod @email, 'AddBcc', @success OUT, 'Joe Smith', 'joe@example.com'
    EXEC sp_OAMethod @email, 'AddBcc', @success OUT, 'Jane Doe', 'jane@example.com'

    DECLARE @n int
    EXEC sp_OAGetProperty @email, 'NumBcc', @n OUT
    DECLARE @i int

    SELECT @i = 0
    WHILE @i <= @n - 1
      BEGIN


        EXEC sp_OAMethod @email, 'GetBcc', @sTmp0 OUT, @i
        PRINT 'Bcc ' + @i + ': ' + @sTmp0
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @email


END
GO