MYCS Support 5/31/2024 7:29:48 AM Hi all, there are a few things we do to increase sending more than two files in an email notification
1. We have Multiple file attachments columns in the form where a user uploads the applicable files and we simply put the file merge fields into the email body. These columns are made public, so the recipient can click on the file hyperlinks in the email to download the attachments
2. To generate more than 1 document and send this in a notification we would again have multiple file attachment columns in the form, use the standard generate document action to generate and save the document to one or more of the file columns and put the column merge fields into the email body
3. Sometimes we need to send files/documents to another application, in most cases it's to another DB Flex built application, we still use the above action to generate the document(s), save the document(s) to the file attachment columns but then use a call URL Action to send the file or files to the receiving application
"Paperwork PDF": <%=URLRoot()&"/attachment.aspx?fid="&ColumnId([File 1 Column Name])&"&guid="&Right([File 1 Column Name], ';')&"&ext=."&Right(Left([File 1 Column Name], ';'), '.')%>,
Cheers Dave
|