• This happen when I updated EBD to Version 5.1.9,
    there is no attachment at all and multiple selection file not working now

    I already update my PHP Version to 5.5 version still not working

    Any Ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Searching for a resolution to this and ended up on the support page – I am having the same issue. Anyone have a solution?

    After fighting with this, I finally just dug into the code. I found that the mail function expects the email form the form to be the CF7(?) default form name of “your-email” – my form had been altered to match submitting the data to both EBD and MailChimp so I was not using that naming convention.

    The following array index ‘EMAIL’ needs to be changed to whatever your form filed name for email is.

    I changed line 133 of /includes/class-email-before-download-process.php to be:

    wp_mail($user_input[‘EMAIL’], $subject, $body, $headers, $attachments);

    and not:

    wp_mail($user_input[‘your-email’], $subject, $body, $headers, $attachments);

    @timothyf – add the ability to specify the form name attribute of your email input to the settings and use the default if nothing is supplied?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No Attachment and Multiple URL Template Not Working’ is closed to new replies.