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

# Filter the subject of email notifications

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

```php
add_filter('seopress_insights_email_alert_subject', 'sp_insights_email_alert_subject');
function sp_insights_email_alert_subject($subject) {
    $subject = __('My custom subject','text-domain');
    return $subject;
}
```

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



