Skip to content

Instantly share code, notes, and snippets.

@keefyhub
Created October 2, 2018 10:09
Show Gist options
  • Select an option

  • Save keefyhub/b4f102191c0d767ed7981a0a139731de to your computer and use it in GitHub Desktop.

Select an option

Save keefyhub/b4f102191c0d767ed7981a0a139731de to your computer and use it in GitHub Desktop.
Resend Woocommerce emails
<?php
function resend_email()
{
if (!isset($_GET['resend_email'])) return;
if (!$_GET['resend_email']) return;
if (!is_user_logged_in()) return;
$customer_id = $_GET['resend_email'];
$email = WC()->mailer()->emails['WC_Email_Customer_New_Account'];
$email->trigger($customer_id, 'password', 'generated password');
}
add_action('init', 'resend_email');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment