I want 3 things in one, all of them were discussed here n this forum separately but I can't make them work together.
So I want:
1. Admin to be notified when user registers + additional e-mail with custom fields listed in the e-mail as here
2. Admin to be notified when user when updates his/her profile link
3. To limit the length of one text area in registration, similar to here
So I managed to set up the option 2 separately but when I try to make them all work together in one function it all crashes or simply does not work.
Can you please help me to construct a valid function in skeleton.php? I am sure I am messing up the code
public function triggerProfileUpdate($user, $data, $changed, $isNew)
{
if(!$isNew)
{
$body=$user->name." updated user profile. \n\n";
foreach($changed as $fieldalias){
$body.=$fieldalias .": ". $data[$fieldalias] ."\n";
}
$result=JFactory::getMailer()->sendMail(
$user->email, // Sender Mail
$user->name, // Sender Name
'[email protected]', // Receiver Mail
'Profile Updated', // Subject Mail
$body // Body Mail
);
}
if( strlen($data['member_profile'])>251 ) $data['textarea_full']=substr($data['member_profile'],0,250);
}
}
Many thanks for help