• Resolved mrdew54

    (@mrdew54)


    Hi, i’m looking for edit the subject of my email. I need to display in this field the string:”NEWSLETTER [site title] , newsletter title”
    Have any idea?
    Thank you very much
    dew

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

    (@eventualo)

    Hi, you can put in your theme functions.php o in a mu-plugin a filter like the following:

    
    function my_easymail_filter_title( $subject ) {
    	return 'NEWSLETTER ' . get_bloginfo( 'name' ) . ', ' . $subject;
    }
    add_filter ( 'alo_easymail_newsletter_title',  'my_easymail_filter_title', 1000 );
    

    I hope it helps.

    Thread Starter mrdew54

    (@mrdew54)

    Worked absolutely perfectly! Thank You very very much ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘edit newsletters’ subject’ is closed to new replies.