UFN_MAILPREFERENCE_VALIDATEADDRESS

Returns true if the given address is valid.

Return

Return Type
bit

Parameters

Parameter Parameter Type Mode Description
@ADDRESSID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_MAILPREFERENCE_VALIDATEADDRESS
            (
                @ADDRESSID uniqueidentifier
            ) 
            returns bit 
            with execute as caller
            as
            begin

            return 1

            end