// send new ad notification email to admin
function cp_new_ad_email( $post_id ) {}
// send new ad notification email to ad owner
function cp_owner_new_ad_email( $post_id ) {}
// when an ad is approved or expires, send the ad owner an email
function cp_notify_ad_owner_email( $new_status, $old_status, $post ) {}
add_filter( 'transition_post_status', 'cp_notify_ad_owner_email', 10, 3 );
// ad poster sidebar contact form email
function cp_contact_ad_owner_email( $post_id ) {}
// email that gets sent out to new users once they register
function cp_new_user_notification( $user_id, $plaintext_pass = '' ) {}
// send new post report email to admin
function app_report_post( $post_id ) {}
// send notification email to buyer when membership was activated
function cp_owner_activated_membership_email( $user, $order ) {}
/**
* Sends email with receipt to customer after completed purchase.
*
* @param object $order
*/
function cp_send_buyer_receipt( $order ) {}
add_action( 'appthemes_transaction_completed', 'cp_send_buyer_receipt' );
/**
* Sends email with receipt to admin after completed purchase.
*
* @param object $order
*/
function cp_send_admin_receipt( $order ) {}
add_action( 'appthemes_transaction_completed', 'cp_send_admin_receipt' );
/**
* Sends email notification to admin if payment failed.
*
* @param object $order
*/
function cp_send_admin_failed_transaction( $order ) {}
add_action( 'appthemes_transaction_failed', 'cp_send_admin_failed_transaction' );
/**
* Sends email notification to admin if listing require moderation.
*
* @param object $post
*/
function cp_notify_admin_moderated_listing( $post ) {}
add_action( 'publish_to_pending', 'cp_notify_admin_moderated_listing', 10, 1 );
almightyeric (February 8th, 2014)
There are currently 1 users browsing this thread. (0 members and 1 guests)