
[dbo].[Forum_EmailTemplatesDefaultsGet]
CREATE PROCEDURE dbo.[Forum_EmailTemplatesDefaultsGet]
AS
SELECT
EmailTemplateID,
EmailSubject,
HTMLBody,
TextBody,
ModuleID,
IsActive,
ForumTemplateTypeID,
ForumContentTypeID,
EmailTemplateName,
ForumEmailTypeID
FROM
Forum_EmailTemplates
WHERE
ModuleID = -1
GO