Bonjour,
J’ai cherché un peu partout et suis désépérée. Je souhaiterai recuperer la valeur d’un champ (dans mon cas email) saisi par un utilisateur à partir du formulaire.
Je souhaite après avoir récuperé cette valeur, l’utiliser comme destinataire pour envoyer un mail (valeur du champ recupéré). Je sais déjà comment paramètrer l’envoie de mail mais ceci avec une adresse mail fixe que je renseigne.
Help me please!!
Merci d’avance
You don’t say which version of the software you are using so I will assume 7.x.x
You have to specify the field in the Form Contract, that is the only way I know how to do it…
see here: http://documentation.bonitasoft.com/contracts-and-contexts-0
Note: if the field is optional - still specify it in a contract (nice and easy to use this way) but ensure you initialize or return the value as NULL if it value is not filled in. You can then use logic << if(!dataField==null){doThis}else{doNothing} >> in the program for a null field.
regards
Seán
PS: If this reply answers your question, please mark a resolved.
Thanks you so much.
It works as you explain me and it helps me.