BUG 14273 "Error al ejecutar los eventos con..." SOLVED
- Error al ejecutar los eventos con PMFSendMessage. - El bug NO se replica, se ha verificado en el branch master donde se importo el proceso adjunto se hizo correr el caso y al ejecutar el "cron" no muestra ningun error como en la imagen adjunta, se siguio los pasos que se menciona en el bug. Revisando los triggers del proceso adjunto se observo que la funcion PMFgetUserEmailAddress no existe en las Funciones que proporciona Processmaker. Se corrige el nombre de la funcion: PMFgetUserEmailAddress por PMFGetUserEmailAddress.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* Autogenerated by Processmaker Daemon System
|
||||
*
|
||||
*
|
||||
* Generic Send Message trigger
|
||||
* {timestamp}
|
||||
*/
|
||||
@@ -9,11 +9,11 @@ $sRecipientTO = "{TO}";
|
||||
$sRecipientCC = "{CC}";
|
||||
$sRecipientBCC = "{BCC}";
|
||||
|
||||
/*Composing the message using PMFgetUserEmailAddress() PM function*/
|
||||
/*Composing the message using PMFGetUserEmailAddress() PM function*/
|
||||
$from = '{from}';
|
||||
$to = PMFgetUserEmailAddress($sRecipientTO, @@APPLICATION);
|
||||
$cc = PMFgetUserEmailAddress($sRecipientCC, @@APPLICATION);
|
||||
$bcc = PMFgetUserEmailAddress($sRecipientBCC, @@APPLICATION);
|
||||
$to = PMFGetUserEmailAddress($sRecipientTO, @@APPLICATION);
|
||||
$cc = PMFGetUserEmailAddress($sRecipientCC, @@APPLICATION);
|
||||
$bcc = PMFGetUserEmailAddress($sRecipientBCC, @@APPLICATION);
|
||||
$subject = '{subject}';
|
||||
$template = '{template}';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user