Advertisement
CodeDropz

Change email format to display file name.

Jul 15th, 2020
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter('dndcf7_before_send_files','cf7_custom_change_email_format', 10, 2 );
  2. function cf7_custom_change_email_format( $links, $files ) {
  3.     if( $files ) {
  4.         $new_links = array();
  5.         foreach( $files as $url ) {
  6.             $new_links[] = wp_basename(  $url );
  7.         }
  8.         return $new_links;
  9.     }
  10.     return $links;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement