Skip to content

Instantly share code, notes, and snippets.

View Arda1601's full-sized avatar

Arda-Bali Arda1601

View GitHub Profile
<?php
function pw_edd_send_email_on_pending( $payment_id, $payment_data ) {
// grab the gateway so we can only send on email for specific gateways
$gateway = isset( $_POST['edd-gateway'] ) ? $_POST['edd-gateway'] : '';
// TODO: replace "bacs" with your gateway ID
if( $gateway != 'bacs' )
return;