Skip to content

Instantly share code, notes, and snippets.

@atwellpub
Last active August 29, 2015 14:06
Show Gist options
  • Save atwellpub/0aaeaf044e9fb067e665 to your computer and use it in GitHub Desktop.
Save atwellpub/0aaeaf044e9fb067e665 to your computer and use it in GitHub Desktop.
Example on how to edit email header data before a new lead notification is sent.
<?php
add_filter( ‘inbound_lead_notification_email_headers’ , ‘some_function’ );
function some_function( $headers ) {
$headers = "From: Custom From Name <customfromemail@yoursite.com>\r\n";
return $headers;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment