Skip to main content

Create a Wordpress Cron Job to Send Reminder

 Hi All,

 


 


The following code is sample of how to create a WP Cron and send out email reminder to targeted seller/admin.


You may use this as reference and change accordingly. Please read the code comments to understand the flow!


This code will check seller users that is not active for 1 month to send reminder to them and delete seller products that is not active for 3 months. To better enhance the code you can actually just set the product as draft instead of deleting it directly.

// WP_CRON
// register monthly interval
add_filter('cron_schedules','my_cron_definer');
function my_cron_definer($schedules){
$schedules['monthly'] = array('interval'=> 2592000, 'display'=> __('Once Every 30 Days') );
return $schedules;
}
// JOB : SEND EMAIL TO USERS WHO IS NOT ONLINE FOR MORE THAN 1 MONTH. NOTIFY THAT THEIR PRODUCT WILL BE REMOVE
// IF THEY STILL NOT ONLINE FOR 3 MONTHS.
if ( ! wp_next_scheduled( 'send_email_to_non_active_sellers_hook' ) ) {
// 10 PM (seller usually active at night)
wp_schedule_event( strtotime('22:00:00'), 'monthly', 'send_email_to_non_active_sellers_hook' );
}
add_action( 'send_email_to_non_active_sellers_hook', 'send_email_to_non_active_sellers_function' );
/**
* Send an alert by email.
*/
function send_email_to_non_active_sellers_function() {
//select user that is offline ensure that users are sellers
//select the user_id and wc_last_active
global $wpdb;
$offline_sellers = $wpdb->get_results("select user_id, meta_value as last_active from wp_usermeta where meta_key= 'wc_last_active' and user_id in (select user_id from wp_usermeta where meta_key in ('fal_user_online_status') and meta_value=0 and user_id in (select user_id from wp_usermeta where meta_key = 'wp_capabilities' and meta_value like '%wcfm_vendor%'));");
//sellers not active more than 3 months
$none_active_sellers_more_than_3_months = array();
//sellers not active more than 1 months
$none_active_sellers_more_than_1_months = array();
foreach($offline_sellers as $seller) {
//get the users that are not active more than 3 month
if ($seller->last_active < date('U', strtotime('-3 month', time()))) {
array_push($none_active_sellers_more_than_3_months, $seller->user_id);
} else if ($seller->last_active > date('U', strtotime('-3 month', time())) and $seller->last_active < date('U', strtotime('-1 month', time()))) {
//get the users that are not active more than 1 month but not exceeding 3 months
array_push($none_active_sellers_more_than_1_months,$seller->user_id);
}
}
define("HTML_EMAIL_HEADERS", array('Content-Type: text/html; charset=UTF-8'));
//send email to the sellers that are not active more than 1 month
foreach($none_active_sellers_more_than_1_months as $none_active_seller_more_than_1_month){
//get email
$user_info = get_userdata($none_active_seller_more_than_1_month);
$user_name = $user_info->display_name;
$user_email = $user_info->user_email;
//SEND EMAIL
$to = $user_email;
$subject = 'We miss you '.$user_name.'. You have not online for sometime..';
$heading = 'Dear '.$user_name.', you have not online for sometime..';
$message = '<p>Please get online to sell your product,
or we will automatically remove your products after you have not online for 3 months.</p>';
$headers = array('Content-Type: text/html; charset=UTF-8');
send_email_woocommerce_style($to, $subject, $heading, $message);
sleep(2);
}
//delete sellers posts that are not active for more than 3 months
foreach($none_active_sellers_more_than_3_months as $none_active_seller_more_than_3_month){
$args = array (
'numberposts' => -1,
'post_type' => 'product',
'author' => $none_active_seller_more_than_3_month
);
// get all posts by this user: posts, pages, attachments, etc..
$seller_posts = get_posts($args);
if (empty($seller_posts)) continue;
// delete all the user posts
foreach ($seller_posts as $seller_post) {
wp_delete_post($seller_post->ID, true);
sleep(2);
}
}
//SEND EMAIL
$to = 'example@gmail.com';
$subject = 'Cron has started and deleted unactive seller posts';
$heading = 'Checkout the latest numbers of posts';
$message = '<p>Checkout the latest numbers of posts at https://foodah.my</p>';
$headers = array('Content-Type: text/html; charset=UTF-8');
send_email_woocommerce_style($to, $subject, $heading, $message);
}
// @email - Email address of the reciever
// @subject - Subject of the email
// @heading - Heading to place inside of the woocommerce template
// @message - Body content (can be HTML)
function send_email_woocommerce_style($email, $subject, $heading, $message) {
// Get woocommerce mailer from instance
$mailer = WC()->mailer();
// Wrap message using woocommerce html email template
$wrapped_message = $mailer->wrap_message($heading, $message);
// Create new WC_Email instance
$wc_email = new WC_Email;
// Style the wrapped message with woocommerce inline styles
$html_message = $wc_email->style_inline($wrapped_message);
// Send the email using wordpress mail function
wp_mail( $email, $subject, $html_message, HTML_EMAIL_HEADERS );
}

Comments

Popular posts from this blog

Tutorial on Min3D framework using Android Studio

Salam peeps, UPDATES***, the model on the old link is no longer working. so i have create a github repo, where i put the source code in a project, you guys can try to clone in and run on your android studio device emulator or directly on your phone, Ive replaced the model with a cube. https://github.com/aliaramli/Min3DTutorial Previously i ve posted tutorial on min3D using eclipse IDE, i believe most of us has moved to Android Studio IDE in developing android apps? As previous tutorial shows a lot of support from readers and among hot post in my blog, i ve decided to post the same tutorial but this time using Android Studio. For those who are familiar with Eclipse/Android Studio migration they might not have problem in running this tutorial . For more detail explanation on min3D please visit this website page Ok lets get started. Step One Create a new android project in android studio. you may name it as what you like, below are how i defined my project settings. ...

Get the last active time from users in woocommerce using sql query

To easily get the last active time from users (under Woocommerce extended plugin) we can easily query from database using the meta_key of "wc_last_active" example query: select user_id, meta_value from wp_usermeta where meta_key= "wc_last_active" and user_id in (11111,112222); results: +-------------+------------------+ | user_id    | meta_value | +-------------+-------------------+ |   11111   | 1556755200 | |   112222 | 1566518400 |

AWS Workspace Device is not Authorized Linux Client

Have you guys tried the AWS Workspace? They are offering the service for free from April - June 2020. For a limited time, in response to COVID-19 , starting April 1, 2020 through June 30, 2020, Amazon WorkSpaces Free Tier provides up to 50 WorkSpaces with Windows Standard bundle with 80 GB Root and 50 GB User Volumes, running in AutoStop mode for up to 10,000 hours of combined use per month across all AWS Regions where WorkSpaces Free Tier is currently available. Additionally, the Amazon WorkSpaces Free Tier provides one WorkSpace with Windows Performance bundle with 80 GB Root and 100 GB User Volumes, running in AutoStop mode for up to 200 hours, two WorkSpaces with Linux Standard bundle with 80 GB Root and 50 GB User Volumes, running in AutoStop mode for up to 400 hours, and one WorkSpace with Windows Value bundle with 80 GB Root and 10 GB User Volume, running in AutoStop mode for up to 200 hours. All new customers that start using WorkSpaces for the first time during ...