fnVolunteerOpEmailTemplateID

Return

Return Type
int

Parameters

Parameter Parameter Type Mode Description
@VolunteerOpID int IN

Definition

Copy


            CREATE FUNCTION dbo.fnVolunteerOpEmailTemplateID
            (    
                @VolunteerOpID        int
            )
            RETURNS int
            AS
            BEGIN
                RETURN 
                (
                SELECT EmailTemplateID 
                FROM dbo.SiteVolunteerOps 
                WHERE ContentID = @VolunteerOpID
                )
            END