How to Configure an Email Sender Snap to Avoid Individual Emails per Record
If you configure an Email Sender Snap with an input view and connect it to receive data from upstream Snaps, one email will be sent for each document processed through the pipeline unless you are using HTML table as the Email type. The HTML table format will embed the data in the email body up to the Batch size limit, sending as many emails as necessary to batch through the documents. Alternatively, if you want to just send the details as an attachment to an email, do not add an input view. Instead, just place the Snap unconnected on the workspace, write the data to a file, and have the Email Sender Snap attach that file to the email.4.1KViews1like0CommentsEmail Sender Snap Include two different table
This is some part of html code that I m using to include in Email body ' <tr> <th>Description</th> <th>Record Count</th> </tr> <tr> <td>Total Record Count In File</td> <td>'+ _Rowcount + '</td> </tr> </table> <br/><br/> Total Successful Record Count In File :' + _ValidRecords+'<br> Total Error Record Count In File :'+ _InvalidRecords+' <br>Error Records Description<br><br> <table class="hovertable"> </table>' Here first table is just a table with 1 row with static values and for the second table tag rows will be populated from input document. This is working ok,but the issue i am facing is both the table are sticking together even if i have defined them separately in html code. Also the text expected above the second table is also pushed down. refer screenshot below: …I ran the same html code in my local browser and was getting expected results(Two separate tables) Is there any fix for this,so that i get two separate tables4.1KViews0likes4Comments