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

# Filter the title of email notifications

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

```php
add_filter('seopress_insights_email_alert_title', 'sp_insights_email_alert_title');
function sp_insights_email_alert_title($title) {
    $title = __('My custom title','text-domain');
    return $title;
}
```

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



