Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: send_cdosysmail and attachments

    this is using CDO

    set ANSI_NULLS ON

    set QUOTED_IDENTIFIER OFF

    SET NOCOUNT ON

    GO

    alter PROCEDURE [dbo].[Test_SendMail_1]

    @From varchar(255) ,

    @To varchar(255) ,

    @Subject varchar(255),

    @Body varchar(8000),

    ...

  • RE: send_cdosysmail and attachments

    Below is the complete code of the proc using CDONTS..

    set ANSI_NULLS OFF

    set QUOTED_IDENTIFIER OFF

    GO

    ALTER PROCEDURE SendEmail

    (

    @From varchar(255)

    , @To varchar(8000)

    , @Subject varchar(255)

    , @Body varchar(8000)

    , @cc...

  • RE: send_cdosysmail and attachments

    I have to migrate a application which is currently on win 2000 server to win 2003 server, I agree with you that CDONTS.dll has been discontinued, but howcome it is...

  • RE: send_cdosysmail and attachments

    IN addition to this..I have a server with win 2003 and there I have a Sp which uses CDONTS to send mail...I have configured everything there but email is not...

  • RE: send_cdosysmail and attachments

    Many thanks for the reply.. I managed to get the attachment working.When I execute my SP it sent the email out but at the end it shows the below error...

  • RE: send_cdosysmail and attachments

    Hi,

    When I tried to use the variable as suggested, the proc just stops to send any mails, though there were no errors this time. Please suggest

    declare @OutPutParam int

    ...

Viewing 6 posts - 1 through 6 (of 6 total)