Hi Daniel,
sorry for late reply, we will try to find a solution. Sorry but not possible, the activation email is managed from Joomla com_users component.
But you can create a simple plugin to send email with user data when user do a registration.
When an user registers on you site you will receive 2 email (activation and user data).
our documentation:
https://www.easy-profile.com/docs/44-triggers.html
the code to implement (not tested)
defined('_JEXEC') or die;
class PlgJsnSkeleton extends JPlugin
{
function triggerProfileUpdate($user,$data,$changed){
$mailSender='[email protected]';
$mailSenderName='Name of Site';
$mailReceiver=$data['email'];
$mailSubject='New User Data';
$mailBody='Name: '.$data['name']."\n\nCountry: ".$data['your_country_field_alias'];
// Send Email
JFactory::getMailer()->sendMail(
$mailSender, // Sender Mail
$mailSenderName, // Sender Name
$mailReceiver, // Receiver Mail
$emailSubject, // Subject Mail
$emailBody // Body Mail
);
return true;
}
}