Advertisement
CodeDropz

Get the files after sent (cf7 hooks)

May 11th, 2023
780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_action('wpcf7_mail_sent', 'sapak_to_pl_cf7_api_sender', 9, 1 );
  2.  
  3. function sapak_to_pl_cf7_api_sender( $contact_form ) {
  4.     $files = CodeDropz_Drag_Drop_Upload_CF7::get_instance()->get_files();
  5.     print_r($files);
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement