Convert HTML to CSV and send to CSV file in Email

Certified Senior Developer

Hello there,

I wanted to convert html to csv file and send CSV file in email.
 I have used "HTML Doc from Template" node and "Convert HTML to CSV" node. My CSV file has generated at backend folders but HTML file is going in email. How Can i send a CSV file in email?

Please suggest.

Thanks

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to Stefan Helzle

    Hi  

    I am looking the above mentioned code.. When I use this code it shown up as same. 

    I am using Node "HTML from doc template" 

    after that I am converting it into pdf which is successfully converted. 

    The issue is with multiple rows not showing up. Just wanted to know how to use above code in HTML?

    This is a table I am using:

    <table style="border:2px solid black" width="100%" border="1" cellpadding="5" cellspacing="0">
    <tr>
    <td><label> <b> comments</b> </label> </td>
    <td><label> <b> createdDate </b> </label> </td>
    <td><label> <b> createdBy </b> </label></td>
    </tr>
    <tr>
    <td> ###comments### </td>
    <td> ###createdDate### </td>
    <td> ###createdBy### </td>
    </tr>
    </table>

    basically I want to repeat this row. because this row has multiple entries.
    <tr>
    <td> ###comments### </td>
    <td> ###createdDate### </td>
    <td> ###createdBy### </td>
    </tr>

    You can check the screenshot:


Children