Sample code for 30+ languages & platforms
SQL Server

Get a Bcc Recipient's Address Only

See more Email Object Examples

Demonstrates the Chilkat Email.GetBccAddr method, which returns only the address part (not the friendly-name part) of the Nth blind carbon-copy recipient. The index is zero-based. This example adds two Bcc recipients and prints each one's address.

Background: A recipient entry has two parts — a display name and an email address — and only the address is used for actual delivery. When your program needs the address itself (to validate it, deduplicate a list, or look it up in a directory), GetBccAddr gives you the bare user@domain without the surrounding display name, avoiding any parsing on your part.

Chilkat SQL Server Downloads

SQL Server
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @sTmp0 nvarchar(4000)
    --  Demonstrates the GetBccAddr method, which returns only the address part (not the
    --  friendly name) of the Nth blind carbon-copy recipient.  The index is zero-based.

    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', 'GetBccAddr 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, 'GetBccAddr', @sTmp0 OUT, @i
        PRINT 'Bcc ' + @i + ' address: ' + @sTmp0
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @email


END
GO