Description
This hook will allow you to filter the email headers that are sent through wp_mail.
Usage
add_filter( 'wpmem_email_headers', 'my_email_headers' );
function my_email_headers( $headers )
{
$headers = 'From: My Name <myname@mydomain.com>' . "\r\n";
return $headers;
}
Examples
- Sending HTML emails from the WP-Members plugin [ members only ]
