Export email this format

Export email this format

rompeplatosrompeplatos Posts: 20Questions: 4Answers: 0

Hi,
A way to export a column(email) in this format:
email1@gmail.com, email2@gmail.com, email3@gmail.com for mailing

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin

    What format is the data in? If it is comma delimited, then that should work. If you link to the page that would be useful.

    Thanks,
    Allan

  • rompeplatosrompeplatos Posts: 20Questions: 4Answers: 0

    I have this

    I want a button that when pressed show the email in this way:

    email1@gmail.com, email2@gmail.com, email3@gmail.com

    I do not know if I explain myself very well.

  • allanallan Posts: 61,667Questions: 1Answers: 10,096 Site admin
    Answer ✓

    So basically you want the data from that column? Use:

    table.column( 1 ).data().toArray().join( ', ' );
    

    Allan

  • rompeplatosrompeplatos Posts: 20Questions: 4Answers: 0

    thank you very much!

This discussion has been closed.