Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Wayne Allen

    (@wayneallen-1)

    There isn’t anything built in. If each sender is a user on your site many themes have the option of displaying the author.

    Otherwise you would need to create a Postie addon. http://postieplugin.com/extending/

    Thread Starter rmcmorran

    (@rmcmorran)

    OK thanks. So for anyone who wants to include the sender name and email in the text body, I put this code into wp-content/filterPostie.php :

    add_filter('postie_post_before', 'my_postie_post_before', 10, 2 );
    
    function my_postie_post_before($post, $headers) {
    	$post['post_content'] =  "From: " .$headers['from']['personal'] ." - " . $headers['from']['mailbox'] ."@" . $headers['from']['host'] ." ". $post['post_content'] ;
        return $post;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sender name’ is closed to new replies.