### [How to Remove or Change Email Notification Footer Text](https://wpforms.com/developers/how-to-remove-or-change-email-notification-footer-text/)

**Published:** October 10, 2019
**Author:** Editorial Team

**Excerpt:** This tutorial will show you how to remove or change the footer text that appears in all WPForms email notifications. 

**Content:**

## Introduction

Would you like to change or remove the email notification footer text? You may want to change the text at the bottom of the notification email to match your own company branding. In this tutorial, will show you how to either change the footer text or remove it completely.

By default, email notifications for WPForms will include a footer that reads “**Sent from YOUR SITE NAME**“.

![Change or remove the footer text shown in the email notifications](https://wpforms.com/wp-content/uploads/2019/08/new-remove-footer-text-from-wpforms-emails.jpg)

## Creating the form

First, you’ll need to create your form and set up your email notifications.

If you need any help with setting up your email notifications, [please review this documentation](https://wpforms.com/docs/setup-form-notification-wpforms/ "How to Set Up Form Notification Emails in WPForms").

![create your form and setup your email notifications on the Notifications tab](https://wpforms.com/wp-content/uploads/2019/10/wpforms-email-notifications.jpg)

## Removing footer text

To completely remove the footer text from all future email notifications from your WPForms, you’ll need to copy and paste this snippet to your site.

If you need any help in adding snippets to your site, [please review this tutorial](https://wpforms.com/developers/docs/how-to-add-custom-php-or-javascript-for-wpforms/ "How to Add Custom PHP or JavaScript for WPForms").

```

/**
 * Filters form notification email footer content.
 *
 * @link https://wpforms.com/developers/how-to-remove-or-change-email-notification-footer-text/
 */

function wpf_dev_remove_email_footer_text( $footer ) {

	$footer = '';

	return $footer;
}

add_filter( 'wpforms_email_footer_text', 'wpf_dev_remove_email_footer_text', 30, 1 );
```

## Changing footer text

If you’d just like to alter the footer text that appears, you can use this snippet.

And if you need help with how to add snippets to your site, [please check out this tutorial](https://wpforms.com/developers/how-to-add-custom-php-or-javascript-for-wpforms/ "How to Add Custom PHP or JavaScript for WPForms").

```

/**
 * Filters form notification email footer content.
 *
 * @link https://wpforms.com/developers/how-to-remove-or-change-email-notification-footer-text/
 */

function wpf_dev_change_email_footer_text( $footer ) {
 
    $footer = sprintf( __( 'NEW TEXT HERE %s', 'wpforms' ), esc_url( home_url() ) , '' );
 
    return $footer;
 
}
 
add_filter( 'wpforms_email_footer_text', 'wpf_dev_change_email_footer_text', 30, 1 );
```

In the snippet above, you’ll want to change the text **NEW TEXT HERE**. That text will automatically link to your WordPress homepage. Optionally you can either remove the **style=”color:#bbbbbb;** or just change the color value completely.

And that’s all you need to change or remove the footer text from the notification emails. Would you like to further customize the notification emails? You can take a look at our article on [How to Include Page Break, Section Divider, and HTML fields in notifications](https://wpforms.com/developers/include-page-break-section-divider-and-html-fields-in-notifications/ "How to Include Page Break, Section Divider, and HTML fields in notifications").

## Related

Filter reference: [wpforms\_email\_footer\_text](https://wpforms.com/developers/wpforms_email_footer_text/ "Using the wpforms_email_footer_text filter from WPForms")

**Categories:** Tutorials

**Tags:** PHP

---

