USP_EMAIL_GETCATEGORYPRIORITY

Retrieves email source and type priorities from the database.

Definition

Copy


      CREATE procedure dbo.USP_EMAIL_GETCATEGORYPRIORITY
      as
      begin
        set nocount on;
        select ID, [DESCRIPTION], PRIORITY from dbo.EMAILCATEGORYPRIORITY
          order by PRIORITY;
      end