Hi,
In the workflow part, I send an e-mail using the formula below, but only variable names appear in the e-mail. The variable values in the template do not appear, but there is no problem with the variables in the pdf file.
My second question is that the workflow sends this email 2 times in a row, each time?
Thanks.
In the workflow part, I send an e-mail using the formula below, but only variable names appear in the e-mail. The variable values in the template do not appear, but there is no problem with the variables in the pdf file.
My second question is that the workflow sends this email 2 times in a row, each time?
Thanks.
HTML Code:
$attachmentId = ext\pdf\generate( 'Szlemeler', entity\attribute('id'), '5fdf90b38f5836c38', 'test.pdf' ); $emailId = record\create('Email', 'to', entity\attribute('emailAddress'), 'attachmentsIds', list($attachmentId) ); // applying email template ext\email\applyTemplate($emailId, '5fdf91f92471e807e'); ext\email\send($emailId);
Comment