Add a user’s email and ID to headers

Add the following inbound policy:

<set-header name="request-email" exists-action="override">
    <value>@(context.User.Email)</value>
</set-header>
<set-header name="request-id" exists-action="override">
    <value>@(context.User.Id)</value>
</set-header>