---
title: Filter the description of email notifications
url: "https://www.seopress.org/support/hooks/filter-the-description-of-email-notifications/"
lang: en-US
updated: 2022-04-07
hook_name: seopress_insights_email_alert_desc
required_version: 1.4
---

# Filter the description of email notifications

- **Hook name:** `seopress_insights_email_alert_desc`
- **Required version:** 1.4

```php
add_filter('seopress_insights_email_alert_desc', 'sp_insights_email_alert_desc');
function sp_insights_email_alert_desc($desc) {
    $desc = __('My custom description','text-domain');
    return $desc;
}
```

Source: [https://gist.github.com/wp-seopress/efdc6953d36a2ad24346eabd413ea0dc](https://gist.github.com/wp-seopress/efdc6953d36a2ad24346eabd413ea0dc)



