Geburtsdatum in Admin-Bestellung anzeigen Oxid 4.2 CE

In der Admin-Bestellmail soll das Geburtsdatum übergeben werden. Bisher habe ich schon folgende Variablen erfolglos probiert:
[{$user->oxuser__oxbirthdate->value}]
[{$order->oxorder__az_gdatum->value}]

Es wird aber in der Bestellmail kein Wert angezeigt.

In der user.tpl müsste das eigentlich diesen Eingabebereich betreffen:
[I]
[{if $oViewConf->showBirthdayFields() }]
<tr>
<td><label>[{ oxmultilang ident=“USER_BIRTHDATE” }]</label></td>
<td valign=“top”>
<table><tr><td>
<input type=“text” size=“3” maxlength=“2” name=“invadr[oxuser__oxbirthdate][day]” value="[{if isset( $invadr.oxuser__oxbirthdate.day ) }][{$invadr.oxuser__oxbirthdate.day }][{elseif $oxcmp_user->oxuser__oxbirthdate->value && $oxcmp_user->oxuser__oxbirthdate->value != “0000-00-00”}][{$oxcmp_user->oxuser__oxbirthdate->value|regex_replace:"/^([0-9]{4})-[-]/":"" }][{/if}]">
<input type=“text” size=“3” maxlength=“2” name=“invadr[oxuser__oxbirthdate][month]” value="[{if isset( $invadr.oxuser__oxbirthdate.month ) }][{$invadr.oxuser__oxbirthdate.month }][{elseif $oxcmp_user->oxuser__oxbirthdate->value && $oxcmp_user->oxuser__oxbirthdate->value != “0000-00-00” }][{$oxcmp_user->oxuser__oxbirthdate->value|regex_replace:"/^([0-9]{4})[-]/":""|regex_replace:"/-$/":"" }][{/if}]">
<input type=“text” size=“8” maxlength=“4” name=“invadr[oxuser__oxbirthdate][year]” value="[{if isset( $invadr.oxuser__oxbirthdate.year ) }][{$invadr.oxuser__oxbirthdate.year }][{elseif $oxcmp_user->oxuser__oxbirthdate->value && $oxcmp_user->oxuser__oxbirthdate->value != “0000-00-00” }][{$oxcmp_user->oxuser__oxbirthdate->value|regex_replace:"/--$/":"" }][{/if}]">
[{if isset($aMustFillFields.oxuser__oxbirthdate) }]<span class=“req”></span>[{/if}]</td>
[{
<td><span class=“fs10”> [{ oxmultilang ident=“USER_BIRTHDAYMESSAGE” }]</span></td> *}]
</tr></table>
</td>
</tr>
[{/if}][/I]

Hat jemand noch einen Tipp für mich, welche Variable ich in der Bestellmail einbinden müsste?