Hello all.
I write here for a problem with MyMemberExtension.
So, i have a file in mysite/code/MyMemberExtension.php
<?php
// mysite/code/MyMemberExtension.php
class MyMemberProfileExtend extends DataExtension {
private static $db = array(
'Identifiant' => 'Varchar(30)'
);
public function updateMemberFormFields(FieldList $fields) {
$fields->push(new TextField('Identifiant', 'Identifiant'));
}
}
All it's Ok. Field is in the class Member.
But when i check validation email, the email is send without any ?key=(empty). In the database TempIDHash , it's empty too.
If i register without MyExtension, all it's good. I have un email with de ?key=19542356716...
Any idear ?
Thanks.