Files
luos/workflow/engine/templates/events/sendMessage.tpl
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

21 lines
644 B
Smarty

/*
* Autogenerated by Processmaker Daemon System
*
* Generic Send Message trigger
* {timestamp}
*/
$sRecipientTO = "{TO}";
$sRecipientCC = "{CC}";
$sRecipientBCC = "{BCC}";
/*Composing the message using PMFGetUserEmailAddress() PM function*/
$from = '{from}';
$to = PMFGetUserEmailAddress($sRecipientTO, @@APPLICATION);
$cc = PMFGetUserEmailAddress($sRecipientCC, @@APPLICATION);
$bcc = PMFGetUserEmailAddress($sRecipientBCC, @@APPLICATION);
$subject = '{subject}';
$template = '{template}';
/*send using PMFSendMessage() PM function*/
PMFSendMessage(@@APPLICATION, $from, $to, $cc, $bcc, $subject, $template);