get_email_address_from

NAML documentation   Watch a video
   Usages of this macro
... 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
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.not
Binary
Namespace: BasicNamespace
Parameters: condition
.is_null
Binary
Namespace: BasicNamespace
Parameters: value
.extract_email_address_from
Binary
Namespace: BasicNamespace
Parameters: text
.text>
        <then.extract_email_address_from
Binary
Namespace: BasicNamespace
Parameters: text
.text/>
        <else>
            <n.if
Binary
Namespace: BasicNamespace
Parameters: condition, else, then
.has_authenticated_user_with_name
Binary
Namespace: NabbleNamespace
Parameters: name
 name="[n.text/]">
                <then>
                    <n.get_authenticated_user_with_name
Binary
Namespace: NabbleNamespace
Parameters: name, do
. name="[n.text/]">
                        <n.user_email
Binary
Namespace: UserNamespace
/>
                    </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>