Change file name of attached file
-
Hi,
is it possible to change the name of uploaded file before to attached to the email sent? I’m trying with this code but attachments results empty: I’d like to change not the content of the file but just the name.function my_wpcf7_save($cfdata) { $submission = WPCF7_Submission::get_instance(); if ( $submission ) { $posted_data = $submission->get_posted_data(); $file_data = $submission->uploaded_files(); $mail = $cfdata->prop('mail'); $mail['attachments']['filename'] = 'newfilename.pdf'; $cfdata->set_properties(array('mail' => $mail)); } } add_action('wpcf7_before_send_mail', 'my_wpcf7_save', 1);
Thank you!
- The topic ‘Change file name of attached file’ is closed to new replies.