Hi,
not natively but you can write plugin (based on our skeleton plugin) to do this.
With our APIs you can build a simple plugin that do this (docs with example plugin at
http://docs.easy-profile.com/index.php/article/triggers)
- Download, Install and Enable Skeleton Plugin (you will find it at
http://docs.easy-profile.com/index.php/article/triggers)
- remove samples functions: triggerFieldAvatarUpdate, triggerProfileUpdate
- add function like this:
public function triggerProfileUpdate($user,&$data,$changed,$isNew)
{
if ( isset( $data['your-field-alias'] ) && !empty( $data[ 'your-field-alias' ] )) {
$body='HERE BODY OF YOUR EMAIL';
$result=JFactory::getMailer()->sendMail(
'HERE YOUR EMAIL', // Sender Mail
$user->name, // Sender Name
$user->email, // Receiver Mail
'HERE SUBJECT', // Subject Mail
$body // Body Mail
);
}
}
NOTE:
This code is not tested and not supported, this is only for example purpose.