Sample code for 30+ languages & platforms
SQL Server

Check if a MIME Part is an Attachment

See more MIME Examples

Demonstrates the Chilkat Mime.IsAttachment method, which returns whether the current part's Content-Disposition is attachment (matched case-insensitively). It takes no arguments.

Note: The file path is relative to the application's current working directory. Absolute paths may also be used. Supply the path to your own file.

Background: Whether a part is an attachment is about disposition, not content type — an image can be inline (Content-Disposition: inline) or an attachment. This predicate keys off that header, which is the right basis for deciding what to list as a downloadable attachment versus what to render within the message body.

Chilkat SQL Server Downloads

SQL Server
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @iTmp0 int
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

    --  Demonstrates the Mime.IsAttachment method, which returns whether the part's Content-Disposition is attachment.  It takes no arguments and applies to the current
    --  part.  This example iterates the parts of a multipart message and reports which ones match.

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

    EXEC sp_OAMethod @mime, 'LoadMimeFile', @success OUT, 'qa_data/multipart_message.eml'
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @mime, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @mime
        RETURN
      END

    DECLARE @n int
    EXEC sp_OAGetProperty @mime, 'NumParts', @n OUT
    DECLARE @part int
    EXEC @hr = sp_OACreate 'Chilkat.Mime', @part OUT

    DECLARE @i int

    SELECT @i = 0
    WHILE @i <= @n - 1
      BEGIN
        EXEC sp_OAMethod @mime, 'PartAt', @success OUT, @i, @part
        IF @success = 0
          BEGIN
            EXEC sp_OAGetProperty @mime, 'LastErrorText', @sTmp0 OUT
            PRINT @sTmp0
            EXEC @hr = sp_OADestroy @mime
            EXEC @hr = sp_OADestroy @part
            RETURN
          END
        EXEC sp_OAMethod @part, 'IsAttachment', @iTmp0 OUT
        IF @iTmp0
          BEGIN


            EXEC sp_OAGetProperty @part, 'ContentType', @sTmp0 OUT

            PRINT 'Part ' + @i + ' (' + @sTmp0 + ') is an attachment.'
          END
        SELECT @i = @i + 1
      END

    EXEC @hr = sp_OADestroy @mime
    EXEC @hr = sp_OADestroy @part


END
GO