Enable Milestone Sales Alerts for Easy Digital Downloads

<?php function sumobi_edd_milestone_sales_alert( $purchase_id ) { // ID of download to check $download_id = 8; // sales milestone to reach $milestone = 100; // email/s to send the notification to. Add more emails to array if necessary $send_to = get_option( 'admin_email' ); // get the current number of sales for the download $sales = get_post_meta( $download_id, '_edd_download_sales', true ); // message to be included in the email $message = sprintf( 'Congratulations, you have just reached your milestone of %s sales for %s! View this sale here: %s', $milestone, get_the_title( $download_id ), admin_url( 'edit.php?post_type=download&page=edd-payment-history&view=view-order-details&id=' . $purchase_id ) ); // send email is milestone is reached if ( $milestone == $sales ) { wp_mail( $send_to, 'Milestone reached!', $message ); } } add_action( 'edd_complete_purchase', 'sumobi_edd_milestone_sales_alert' ); ?>
This is a great snippet for Easy Digital Downloads that will enable milestone sales email alerts.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.