Hi,
yes but you need to create a simple plugin, follow these steps:
- Download, install and enable our skeleton plugin (you can find it here
https://www.easy-profile.com/docs/44-triggers.html)
- open this file /plugins/jsn/skeleton/skeleton.php
- remove samples function triggerFieldAvatarUpdate and triggerProfileUpdate
- add this function
public function triggerProfileUpdate($user, $data, $changed, $isNew)
{
if(!$isNew)
{
JFactory::getMailer()->sendMail(
$user->email, // Sender Mail
$user->name, // Sender Name
'[email protected]', // Receiver Mail
'Profile Updated', // Subject Mail
$user->name.' updated user profile.' // Body Mail
);
}
}
replace
[email protected] with you admin email
NOTE: This code is not supported and required minimum PHP and Joomla Knowledge