### [wpforms_emails_summaries_cron_to_email](https://wpforms.com/developers/wpforms_emails_summaries_cron_to_email/)

**Published:** February 13, 2020
**Author:** Editorial Team

**Excerpt:** The wpforms_emails_summaries_cron_to_email filter is used to determine what email address is used for the delivery of the weekly email summary report. 


**Content:**

## Description

The `wpforms_emails_summaries_cron_to_email` filter is used to determine what email address is used for the delivery of the weekly email summary report.

## Parameters

$email\_address*(string) (Required)* Email address used for weekly summary report.## Source

`wpforms/src/Emails/Summaries.php`

## More Information

The `wpforms_emails_summaries_cron_to_email` filter is used to determine what email address is used for the delivery of the weekly email summary.

## Example

```

/*
 * Email address for a weekly email summary
 *
 * @link https://wpforms.com/developers/wpforms_emails_summaries_cron_to_email/
 * 
 * @param $email_address Email address.
 *
 * return string
 */

function wpf_dev_emails_mailer_to_email_summary( $email_address ) {
 
    return 'yourname@email.com';
}
add_filter( 'wpforms_emails_summaries_cron_to_email', 'wpf_dev_emails_mailer_to_email_summary', 1 );

```

## Referece Articles

[Change the Default Email for Weekly Email Summaries](https://wpforms.com/developers/change-the-default-email-for-weekly-email-summaries/ "Change the Default Email for Weekly Email Summaries")

**Categories:** Filters Hooks

**Tags:** PHP

---

