Thank you!
If it's allright, I've got a follow up question.
I want to create a AcyMailing list on submit of the Seblod form, using AcyMailings API.
The code:
$newlist = new stdClass();
$newlist->name = 'Your list name';
$newlist->description = 'Your list description'; //this parameter is optional
if(!include_once(rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_acymailing'.DS.'helpers'.DS.'helper.php')){
echo 'This code can not work without the AcyMailing Component';
return false;
}
$listClass = acymailing_get('class.list');
$listid = $listClass->save($newlist); //This function will create the list and return the ID of the created list
So, seeing that the end $listid will be returned from AcyMailing, and I need to use this ID later to make sure that users signing up through Seblod gets added to the correct list: Is it before store I should use?