Jump to content
  • GetUserEMailAddress

    GetUserEMailAddress

    VBScript   → Lua

     

    This function returns the configured email address of the given user.

    Please see the Introduction chapter for some usage instructions.

     

    '----------------------------------------------------------------  
    ' GetUserEMailAddress 
    '  
    ' Returns the configured email address of the given user.
    '  
    ' Parameter:
    '   sNumber          number or name of user 
    '  
    ' Return:
    '   string
    '---------------------------------------------------------------- 
    Function GetUserEMailAddress ( sNumber ) 
    
        PBXScript.OutputTrace "----------> GetUserEMailAddress"
        PBXScript.OutputTrace "sNumber = " & sNumber
    
        Dim sReturn, oUsers, oUser
        Set oUsers = g_PBXConfig.GetUserByAddress(sNumber)
    
        sReturn = ""
    
        For Each oUser In oUsers
            PBXScript.OutputTrace "Found user '" & oUser.Name & "' with email address '" & oUser.EMailAddress & "'"
            sReturn = oUser.EMailAddress
        Next
    
        GetUserEMailAddress = sReturn
    
        PBXScript.OutputTrace "sReturn = " & sReturn
        PBXScript.OutputTrace "<---------- GetUserEMailAddress"
    
    End Function

     

    This function makes use of the Server Script API functions PBXConfig.GetUserByAddress to resolve the given users' email address and PBXScript.OutputTrace to write trace information into the SwyxServer trace file.

     

    This function was initially posted into this forum topic.

     

     


    Tom Wellige
     Share


     Share




    User Feedback

    Recommended Comments

    There are no comments to display.



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.