Stored Procedures [dbo].[EmailApiGetPdfInputHtml]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@inOutgoingEmailIdint4
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
CREATE PROCEDURE [dbo].[EmailApiGetPdfInputHtml]
    @inOutgoingEmailId int
AS
begin
    set nocount on
    select OutgoingEmailPdfInput.PdfHtmlContent
    from OutgoingEmailPdfInput
    where OutgoingEmailPdfInput.OutgoingEmailFid = @inOutgoingEmailId
end
GO
GRANT EXECUTE ON  [dbo].[EmailApiGetPdfInputHtml] TO [MssExec]
GO
Uses