Hi,
Easy Profile extends Joomla user profile, so notifications are the same. Joomla already send email when new user register an account.
To have email when user change their profile you need to develop simple plugin, follow these steps:
- Download, install and enable our "skeleton" plugin, you will find at the end on this page
http://docs.easy-profile.com/index.php/article/triggers
- open file /plugins/jsn/skeleton/skeleton.php
- Delete example functions: triggerFieldAvatarUpdate, triggerProfileUpdate
- write your function like this:
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
'PUT HERE YOUR EMAIL ADDRESS', // Receiver Mail
'Profile Updated', // Subject Mail
$body // Body Mail
);
}
}
this plugin will send you an email with list on field changed