Hello.
I have created Joomla! registration form with custom fields using Chronoforms v5.
Now I have next problem: User receives two emails. One with account activation link and data, and the other with data added in custom fields from Joomla! registration form created using Chronoforms v5.
How can I "merge" those two emails into one? I will like to have sent one email with Joomla! activation link and data + custom data from fields from Joomla! registration form created using Chronoforms v5.
Thanks ahead!
I have created Joomla! registration form with custom fields using Chronoforms v5.
Now I have next problem: User receives two emails. One with account activation link and data, and the other with data added in custom fields from Joomla! registration form created using Chronoforms v5.
How can I "merge" those two emails into one? I will like to have sent one email with Joomla! activation link and data + custom data from fields from Joomla! registration form created using Chronoforms v5.
Thanks ahead!
Hi,
You can disable the Joomla registration/activation email and send a completely custom one with Chronoforms and include any data you want along with the activation link.
There is demo form to do that on v6, you can use the contact us page to get.
Best regards,
You can disable the Joomla registration/activation email and send a completely custom one with Chronoforms and include any data you want along with the activation link.
There is demo form to do that on v6, you can use the contact us page to get.
Best regards,
Thank you for answer.
I'm using Chronoforms v5, but I managed to implement next solution:
In element Joomla Registration I have added custom element with next code
In Email element I have added
I will like to thanks Bob Janes for this code, I find it in other post.
I'm using Chronoforms v5, but I managed to implement next solution:
In element Joomla Registration I have added custom element with next code
<?php
$token = $form->data['_PLUGINS_']['joomla_registration']['activation'];
$form->data['vlink'] = JURI::root().'component/users/?task=registration.activate&token='.$token;
?>
In Email element I have added
<a href="{vlink}">{vlink}</a>
I will like to thanks Bob Janes for this code, I find it in other post.
This topic is locked and no more replies can be posted.