Email Header to Identify Notification Source

Add a custom email header to identify the URL that generated the Gravity Forms notification.

Code

Filename: gw-email-header-notification-source.php

<?php
/**
 * Gravity Wiz // Gravity Forms // Email Header to Identify Notification Source
 * https://gravitywiz.com/
 *
 * You've installed Gravity Forms on a ton of sites and now you're getting a ton of notifications. The problem is there
 * is no clear indicator which site is sending the notification. How frustrating!
 *
 * This simple plugin automatically adds a custom header that identifies the URL that generated the Gravity Forms notification.
 * This is most useful when installed as an MU plugin at the start of development on each site.
 *
 * Plugin Name:  Gravity Forms - Email Header: Notification Source
 * Plugin URI:   https://gravitywiz.com/
 * Description:  Add a custom email header to identify the URL that generated the Gravity Forms notification.
 * Author:       Gravity Wiz
 * Version:      1.0
 * Author URI:   https://gravitywiz.com
 */
add_filter( 'gform_pre_send_email', function( $email ) {
	$email['headers']['X-gravity-forms-source'] = sprintf( 'X-gravity-forms-source: %s', GFFormsModel::get_current_page_url() );
	return $email;
} );

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.