Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travislopes/2a3e969adca528d87b92668851239a30 to your computer and use it in GitHub Desktop.
Save travislopes/2a3e969adca528d87b92668851239a30 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'fg_entryautomation_export_email_subject', 'subject_date_range', 10, 4 );
function subject_date_range( $subject, $settings, $form, $file_name ) {
// Get search criteria.
$search_criteria = fg_entryautomation()->get_search_criteria( $settings, $form );
// Add date range to subject.
return sprintf( 'Form Summary for %s to %s', $search_criteria['start_date'], $search_criteria['end_date'] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment