I’m getting data out of a REST call and I need to check whether or not a certain entry is present or missing. My list of needed entries consists of, example: String1, String2, String3, String4. If on...
snapping_turtl3 - Please download the attached ZIP file, decompress it, and import it as a new pipeline to your org. I copied the HTML Table Email Template Body directly from the documentation, and can verify it is working as expected. Here is a sample of the email generated by this pipeline.
A few important Email Sender snap properties to ensure this is working correctly:
Email type - must be set to HTML table in order to make use of the built-in table formatting
Template body - must contain the "style" CSS that describes the table.Snap - leave <table class="Snap"></table> tags empty - when the documents are passed in, the snap will auto-generate the correct HTML markup to place the data in the table
Table-data path - you can leave this as "$" to allow the snap to create your table data from the entire input document, as I have in this example; or you can give it a field name that contains and array to process
Batch size - this property allows multiple emails to be sent in the event there is a large number of documents passed into the snap to prevent overly-large emails from being sent
koryknick Thanks for the response. However, What I require is to transpose the table. i.e. Columns should be listed on the left hand side veristically. I am trying to print the key, value pairs from the previous mapper snap, so it would have two columns, the first column having the keys listed veristically and the second column containing the corresponding values.