Skip to content

Instantly share code, notes, and snippets.

@eveevans
Created November 12, 2013 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eveevans/7437222 to your computer and use it in GitHub Desktop.
Save eveevans/7437222 to your computer and use it in GitHub Desktop.
<?php
/**
* Customer Reset Password email
*
* @author WooThemes
* @package WooCommerce/Templates/Emails
* @version 2.0.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<?php do_action('woocommerce_email_header', $email_heading); ?>
<p>Alguien ha solicitado cambiar su contraseña para la siguiente cuenta:</p>
<p><?php printf( __( 'Username: %s', 'woocommerce' ), $user_login ); ?></p>
<p>Si esto es un error, simplemente ignore este correo y no pasará nada</p>
<p>Si desea cambiar su contraseña, visite la siguiente dirección: </p>
<p>
<a href="<?php echo esc_url( add_query_arg( array( 'key' => $reset_key, 'login' => rawurlencode( $user_login ) ), get_permalink( woocommerce_get_page_id( 'lost_password' ) ) ) ); ?>">
<?php _e( 'Click here to reset your password', 'woocommerce' ); ?></a>
</p>
<p></p>
<?php do_action('woocommerce_email_footer'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment