hello in my workflow i add some email sending action, how i can add pdf created ?
regards
regards
$attachmentId = ext\pdf\generate(
'Lead',
entity\attribute('id'),
'pdf-template-id',
'test.pdf'
);
$emailId = record\create('Email',
'subject', 'Test PDF',
'body', 'PDF is attached',
'to', entity\attribute('emailAddress'),
'attachmentsIds', list($attachmentId)
);
ext\email\send($emailId);
Comment