Skip to content

Instantly share code, notes, and snippets.

@Yorlinq
Last active July 24, 2022 07:05
Show Gist options
  • Save Yorlinq/cea1a3ca1f4d5af9ba7a29bc7fdce840 to your computer and use it in GitHub Desktop.
Save Yorlinq/cea1a3ca1f4d5af9ba7a29bc7fdce840 to your computer and use it in GitHub Desktop.
Use shortcodes in system emails - WordPress
// 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