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

    I want to use loop for this row only..
    <tr>
    <td>###col1###</td>
    <td>###col2###</td>
    <td>###col3###</td>
    <td>###col4###</td>
    <td>###col5###</td>
    <td>###col6###</td>
    <td>###col7###</td>
    <td>###col8###</td>
    </tr>  

    This is something like when HTML convert to CSV only one row is showing up(it's picking up only one row from database). But we have have multiple row in database. I want to use foreach for the same.

Children