Skip to content

Instantly share code, notes, and snippets.

@KevinGraham-com
Created December 5, 2024 04:33
Show Gist options
  • Select an option

  • Save KevinGraham-com/ebda978f7dd3a0b570cc6d310283969c to your computer and use it in GitHub Desktop.

Select an option

Save KevinGraham-com/ebda978f7dd3a0b570cc6d310283969c to your computer and use it in GitHub Desktop.
<?php
add_hook('EmailPreSend', 1, 'disableSomeMails');
function disableSomeMails($vars) {
// update the 11 below to whichever hour you run this task at.
if (date('g') == 11 AND $vars['messagename'] == "Credit Card Payment Failed") {
return array('abortsend' => 'true');
} else {
return 'success'; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment