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:
Luis Fernando Saisa Lopez
2014-03-21 12:53:37 -04:00
parent 63ac4b5aa0
commit 05dd7adfc8

View File

@@ -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}';