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

    Requirement is CSV file should send in the email attachment.
    I have created a HTML template and convert it into CSV.


    Now, the issue is: When csv file is generated all data is coming in one row in concating form.
    I want to split that data in each single row. This is happening because of this <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>  

    So I want to use foreach.

Children