get_email_address_from

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "get_email_address_from".
... in manage_users_and_groups.naml
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<macro name="get_email_address_from" dot_parameter="text">
    <n.if.not.is_null.extract_email_address_from.text>
        <then.extract_email_address_from.text/>
        <else>
            <n.if.has_authenticated_user_with_name name="[n.text/]">
                <then>
                    <n.get_authenticated_user_with_name. name="[n.text/]">
                        <n.user_email/>
                    </n.get_authenticated_user_with_name.>
                </then>
            </n.if.has_authenticated_user_with_name>
        </else>
    </n.if.not.is_null.extract_email_address_from.text>
</macro>