Last active
July 24, 2022 07:05
-
-
Save Yorlinq/cea1a3ca1f4d5af9ba7a29bc7fdce840 to your computer and use it in GitHub Desktop.
Use shortcodes in system emails - WordPress
This file contains hidden or 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
// Use shortcodes in system emails | |
function yl_activate_shortcodes_in_wp_mail($args) { | |
$args['message'] = do_shortcode($args['message']); | |
return $args; | |
} | |
add_filter('wp_mail', 'yl_activate_shortcodes_in_wp_mail', 20, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment