-
-
Save conschneider/3c01c19be997f9d41a3281cdec8c044b to your computer and use it in GitHub Desktop.
AutomateWoo - Customize your email sender name #woo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// change the from name | |
add_filter( 'automatewoo/mailer/from_name', function( $from_name ) { | |
return 'My Custom From Name'; | |
}); | |
// change the from address | |
add_filter( 'automatewoo/mailer/from_address', function( $from_email ) { | |
return '[email protected]'; | |
}); | |
// change the from based on the template | |
add_filter( 'automatewoo/mailer/from_address', function( $from_email, $template_id ) { | |
if ( $template_id == 'plain' ) { | |
return '[email protected]'; | |
} | |
else { | |
return '[email protected]'; | |
} | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment