abracadabraPDF › Forums › PDF – Général › Formulaire Acrobat Pro: bouton envoi email + en objet le contenu d’un champ › Répondre à : Formulaire Acrobat Pro: bouton envoi email + en objet le contenu d’un champ
4 février 2015 à 17:30
#58375
Membre
Bon le JavaScript c’est pas limpide, je pensais faire une concaténation avec ça:
Code:
var fTo = « Service.Support-Dev@toto.com »;
var fSubject1 = this.getField(« Enseigne »);
fSubject1 += this.getField(« Environnement »);
var fBody = this.getField(« Explication »);
var fSubject1 = this.getField(« Enseigne »);
fSubject1 += this.getField(« Environnement »);
var fBody = this.getField(« Explication »);
this.mailDoc(true, « fTo.value », « », « », fSubject1.value , fBody.value);
mais ca fonctionne pas… :doute: [/code]