Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m looking for the same answer for senders name.

    Plugin Author Willy Bahuaud

    (@willybahuaud)

    Hello,

    To change email subject, you just need to paste this filter into a mu-plugin, or your functions.php theme file :

    add_filters( 'mca-email-subject', 'custom_email_subject', 10, 5 );
    function custom_email_subject( $subject, $comment, $name, $mail, $titre ) {
      $newsubject = ''; //Compose your subject using filter parameters
      return $newsubject;
    }

    To customize sender name, I suggest you to install WP Better emails ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the email subject and sender's name?’ is closed to new replies.