Created
February 25, 2017 07:02
-
-
Save travislopes/a7280360c73e2213c85749a598eb02b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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