Review Reminder Email Send Action hook?
-
Hello.
I want to send not only the email but also SMS message about review reminder.
So please let me know the action hooks triggered when sending an review reminder email to the customer.
Are different hooks triggered when sending an review reminder email via ‘manual’ action and ‘cron’?
For example,
function send_sms_after_review_reminder_email(){
$customer_email = $_POST[’email’];
$customer_phone = get_user_meta($customer_email, ‘billing_phone’, true); cosmosfarm_members_sms_send($customer_phone, ‘Thank you for purchasing from our store! Please don’t forget to leave a review for the product you purchased.’); } }
add_action(‘??????????????????????’, ‘send_sms_after_review_reminder_email’);Finally, is there any way to retrieve list of products in order and “esc_url( $cr_email_form_link )” in the hook?
- The topic ‘Review Reminder Email Send Action hook?’ is closed to new replies.