Title: Multiple files upload broken
Last modified: January 5, 2023

---

# Multiple files upload broken

 *  [jamalissimo](https://wordpress.org/support/users/jamalissimo/)
 * (@jamalissimo)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/multiple-files-upload-broken/)
 * Hello,
 * I hope that some of the wpcf7 developers will read it but nevertheless I have
   found a bug related to sending multiple attachments. It seems present from version
   5.4.
 * My use case was to generate 2 pdf files before the submission and attach those
   files to the e-mail. I created them and built a string concatenated from 2 file
   names and separated by **\n** that I put to the **$wpcf7[‘mail’][‘attachments’]**.
   No luck. I tried what I could, I read all threads on StackOverflow and wp forums
   but I was still not able to send more than one attachment, even when I was convinced
   that my code is OK.
 * I started debugging the **mail.php** and after some fiddling, I discovered that
   the method **attachments( $template = null ) ** does not correctly split the 
   attachment file names from the **$template**.
 * **Not working:foreach ( explode( “\n”, $template ) as $line ) {
   …
 * **Working:$atts_arr = explode(‘\n’, $template );
   foreach ( $atts_arr as $line){
   $line = trim( $line );…

Viewing 1 replies (of 1 total)

 *  Plugin Author [Takayuki Miyoshi](https://wordpress.org/support/users/takayukister/)
 * (@takayukister)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/multiple-files-upload-broken/#post-16343539)
 * See [File uploading and attachment](https://contactform7.com/file-uploading-and-attachment/)

Viewing 1 replies (of 1 total)

The topic ‘Multiple files upload broken’ is closed to new replies.

 * ![](https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255)
 * [Contact Form 7](https://wordpress.org/plugins/contact-form-7/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/contact-form-7/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/contact-form-7/)
 * [Active Topics](https://wordpress.org/support/plugin/contact-form-7/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/contact-form-7/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/contact-form-7/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Takayuki Miyoshi](https://wordpress.org/support/users/takayukister/)
 * Last activity: [3 years, 5 months ago](https://wordpress.org/support/topic/multiple-files-upload-broken/#post-16343539)
 * Status: not resolved