Bonjour,
Est-il possible de récupérer le last ID après une insertion d'une fiche dans un module via un formulaire client (front end) ?
je dois ensuite envoyer les infos des champs remplis par mail ...
j'ai essayé ça
Code :
<atm-form-callback form="addContact">
<?php
$htmlbody = "Voici le dernier saucisson : {contact:id}";
$htmlmail = new CMS_email();
$htmlmail->setSubject("test");
$htmlmail->setEmailHTML($htmlbody);
$htmlmail->setEmailFrom("contact@dom.fr");
$htmlmail->setEmailTo("email@gmail.com");
?>
</atm-form-callback>
et cela me renvoit ->getValue('id','')
merci super urgent